Created
June 16, 2013 08:56
-
-
Save wpspeak/5791445 to your computer and use it in GitHub Desktop.
Add shortcode for search form in WordPress
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
<?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