search before query

add_action( 'pre_get_posts', 'theme_search_before_query' );
function theme_search_before_query( $query ){

    if( $query->is_search ){

        $query->set( 'post_type', array( 'post', 'news', 'events', 'project', 'tenders', 'page' ) );
    }
}
category: Code

Leave a Reply

Your email address will not be published. Required fields are marked *