1 2 3 4 5 6 7 8 9 10 11 12
<?php// [search]function search_shortcode() { ob_start(); get_product_search_form(); $content = ob_get_contents(); ob_end_clean(); return $content;}add_shortcode("search", "search_shortcode");