-
-
Save cwulff/5918676 to your computer and use it in GitHub Desktop.
Add a shortcode for search form in WordPress
This file contains 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
/* | |
* 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