Skip to content

Instantly share code, notes, and snippets.

@cwulff
Forked from wpspeak/functions.php
Created July 3, 2013 14:46
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 cwulff/5918676 to your computer and use it in GitHub Desktop.
Save cwulff/5918676 to your computer and use it in GitHub Desktop.
Add a shortcode for search form in WordPress
/*
* Add a shortcode for search form in WordPress
* @url http://www.paulund.co.uk/display-wordpress-search-form
*/
function search_form_shortcode( ) {
get_search_form( );
}
add_shortcode('search_form', 'search_form_shortcode');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment