Created
May 27, 2014 03:19
-
-
Save AmeliaBriscoe/29f5901d5bdac26bb32b to your computer and use it in GitHub Desktop.
Display a zero results message in Thesis Classic Skin Search Template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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