Skip to content

Instantly share code, notes, and snippets.

@TwisterMc
Last active November 10, 2019 21:44
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save TwisterMc/0571813b25a81da1f30d79a9824d0121 to your computer and use it in GitHub Desktop.
Save TwisterMc/0571813b25a81da1f30d79a9824d0121 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