Specific tag search

0

I have several entries with several (different) tags, some of them, in the start part they have the same numeriation (026 ...).

I want to make a search "026", do not leave all the entries with the beginning of that tag.

How could I solve this problem?

    
asked by Granedoy 10.09.2018 в 02:16
source

1 answer

0

FIND THE SOLUTION

They should only add in functions.php

add_action( 'pre_get_posts', 'my_search_is_exact', 10 );

function my_search_is_exact( $query ) {
    if ( !is_admin() && $query->is_main_query() && $query->is_search ) {
        $query->set( 'exact', true );
    }
}
    
answered by 10.09.2018 в 03:18