Skip to content

Instantly share code, notes, and snippets.

@neilgee
Created February 8, 2018 21:41
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 neilgee/ada281fdf590cc5e61a249c5d5a7ce1d to your computer and use it in GitHub Desktop.
Save neilgee/ada281fdf590cc5e61a249c5d5a7ce1d to your computer and use it in GitHub Desktop.
Beaver Builder Shortcode Search Field
<?php // <~ don't add me in
add_shortcode( 'bb_search','bb_search_shortcode' );
/* Add Search via shortcode */
function bb_search_shortcode() {
ob_start();
FLTheme::nav_search();
return ob_get_clean();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment