mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-28 11:22:21 +08:00
7 lines
216 B
Text
7 lines
216 B
Text
add_action( 'woocommerce_before_main_content', 'astra_display_search_form_on_shop_page', 5 );
|
|
|
|
function astra_display_search_form_on_shop_page() {
|
|
if ( is_shop() ) {
|
|
echo astra_get_search_form();
|
|
}
|
|
}
|