How to limit search to first letter of title?

I was wondering if there was a way to make the search only look for the first letter in the posts title, basically let’s say my search query is www.mysite.com/?s=q I’d like to get all posts that start with the letter “Q”. Is this possible?

Thanks in advance.

Related posts

Leave a Reply

1 comment

  1. I know it is too late but I hope it is going to help someone in the future
    You can add a filter to posts_where and add a regexp to limit it to the first letter. WordPress documentation for posts_where

    add_filter( 'posts_where' , 'posts_where' );
    
    function posts_where( $where ) {
    
    if( is_admin() ) {
        global $wpdb;
    
        if ( isset( $_GET['author_restrict_posts'] ) && !empty( $_GET['author_restrict_posts'] ) && intval( $_GET['author_restrict_posts'] ) != 0 ) {
            $author = intval( $_GET['author_restrict_posts'] );
    
            $where .= " AND ID IN (SELECT object_id FROM {$wpdb->term_relationships} WHERE term_taxonomy_id=$author )";
        }
    }
    return $where;
    }