Skip to content

Instantly share code, notes, and snippets.

@stuartduff
Created March 15, 2023 13:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stuartduff/7b5d1f85bd29917fb9f9eca395d306f5 to your computer and use it in GitHub Desktop.
Save stuartduff/7b5d1f85bd29917fb9f9eca395d306f5 to your computer and use it in GitHub Desktop.
Replace Storefront Header Search With Default WordPress Search Widget
function storefront_product_search() {
if ( storefront_is_woocommerce_activated() ) {
?>
<div class="site-search">
<?php the_widget( 'WP_Widget_Search', 'title=' ); ?>
</div>
<?php
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment