Skip to content

Instantly share code, notes, and snippets.

@stephanieleary
Created March 3, 2016 17:03
Show Gist options
  • Save stephanieleary/bb47cb741639beb38389 to your computer and use it in GitHub Desktop.
Save stephanieleary/bb47cb741639beb38389 to your computer and use it in GitHub Desktop.
Include number of search results in Genesis title
<?php
add_filter( 'genesis_search_title_text', 'my_search_title_text' );
function my_search_title_text( $title ) {
global $wp_query;
$start = ( ( $wp_query->paged - 1 ) * $wp_query->posts_per_page ) + 1;
$end = $wp_query->paged * $wp_query->posts_per_page;
return sprintf( '%s (%d&mdash;%d of %d)', $title, $start, $end, $wp_query->found_posts );
}
genesis();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment