Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created July 15, 2015 13:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/32bf346b5e17d2d5ed47 to your computer and use it in GitHub Desktop.
Save billerickson/32bf346b5e17d2d5ed47 to your computer and use it in GitHub Desktop.
<?php
/**
* Search Results Title
*
*/
function be_search_results_title( $title ) {
return 'Listing Results for ' . get_search_query();
}
add_filter( 'genesis_search_title_text', 'be_search_results_title' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment