Posted on

Category title in the search results page

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";
    }
?>

One comment Category title in the search results page

Leave a Reply

Are you a Relevanssi Premium customer looking for support? Please use the Premium support form.

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