Skip to content

Instantly share code, notes, and snippets.

@ivorpad
Created November 14, 2011 16:02
Show Gist options
  • Save ivorpad/1364275 to your computer and use it in GitHub Desktop.
Save ivorpad/1364275 to your computer and use it in GitHub Desktop.
Limit Number Of Words In The WordPress Search Query
<!-- I needed to limit the words in the WordPress search query to display it as a title and a long query broke the whole thing, so this did the trick -->
<?php
$my_search_query = get_search_query();
echo string_limit_words($my_search_query, 3);
?>[...]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment