mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
14 lines
596 B
Text
14 lines
596 B
Text
add_action( 'woocommerce_before_shop_loop', 'woocommerce_product_search_form' );
|
|
|
|
/**
|
|
* Displays the product search form on the shop page.
|
|
*/
|
|
function woocommerce_product_search_form() {
|
|
?>
|
|
<form action="<?php echo esc_url( home_url( '/' ) ); ?>" method="get">
|
|
<input type="text" name="s" value="<?php echo get_search_query(); ?>" placeholder="<?php _e( 'Search for products…', 'woocommerce' ); ?>" />
|
|
<input type="submit" value="<?php _e( 'Search', 'woocommerce' ); ?>" />
|
|
<input type="hidden" name="post_type" value="product" />
|
|
</form>
|
|
<?php
|
|
}
|