Skip to content

Instantly share code, notes, and snippets.

@wpspeak
Created June 16, 2013 08:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save wpspeak/5791445 to your computer and use it in GitHub Desktop.
Save wpspeak/5791445 to your computer and use it in GitHub Desktop.
Add shortcode for search form in WordPress
<?php
/*
* 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