Below is the code to display a search form using a shortcode 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
<?php | |
//* Display a search form using the shortcode [customprefix-search] | |
add_shortcode('customprefix-search', 'get_search_form'); |