Skip to content

Instantly share code, notes, and snippets.

@davekuhar
Forked from TwisterMc/bb-search.php
Created November 10, 2019 20:38
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 davekuhar/e3b84654f8ffdb5747032f406ad9b741 to your computer and use it in GitHub Desktop.
Save davekuhar/e3b84654f8ffdb5747032f406ad9b741 to your computer and use it in GitHub Desktop.
Beaver Builder - Add Search to Mobile
<?php
/**
* Add Search Box to Mobile
* Adds a search box to mobile, below the header.
* To move it above the header, change fl_after_header to fl_before_header
*/
function bbMenuPolish_addMobileSearch(){
if ( wp_is_mobile() ) {
get_search_form();
}
}
add_action( 'fl_after_header', 'bbMenuPolish_addMobileSearch' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment