Skip to content

Instantly share code, notes, and snippets.

@AmeliaBriscoe
Created May 27, 2014 03:19
Show Gist options
  • Select an option

  • Save AmeliaBriscoe/29f5901d5bdac26bb32b to your computer and use it in GitHub Desktop.

Select an option

Save AmeliaBriscoe/29f5901d5bdac26bb32b to your computer and use it in GitHub Desktop.
Display a zero results message in Thesis Classic Skin Search Template
function search_message() {
if (is_search()){
echo '<div class="no-results">';
echo '<h2>No items could be found for "'.get_search_query().'"</h2>';
echo '</div>';
}
}
add_action('thesis_empty_loop','search_message');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment