Skip to main contentSkip to footer

If you’re using category restriction dropdown on your search form, here’s a bit of code that you can add to your search results template to show how many hits were found and what the category is. If no category was selected, this’ll just show how many hits were found.

<?php
    $cat = get_cat_name( $wp_query->query_vars['cat'] );
    $s = $wp_query->query_vars['s'];
    echo $wp_query->found_posts . " results found with ' $s'";
    if ( ! empty( $cat ) ) {
        echo " in the '$cat' category";
    }
?>

Your account

Not logged in. Log in to see your license details.

Search

Popular Resources

Popular searches
This is a very common request: “How do I show the most popular searches in a widget or on a…

Related Posts:

Comment Section:

1 Comment. Leave new

Leave a Reply

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

Fill out this field
Fill out this field
Please enter a valid email address.
You need to agree with the terms to proceed