Skip to content

Instantly share code, notes, and snippets.

@beaverbuilder
Last active February 24, 2018 22:14
Show Gist options
  • Save beaverbuilder/511cf90188929711d0be6371c2ae7a36 to your computer and use it in GitHub Desktop.
Save beaverbuilder/511cf90188929711d0be6371c2ae7a36 to your computer and use it in GitHub Desktop.
Search Icon shortcode (must have BB theme active)
<?php // Do not copy this line, start with line 3
add_shortcode( 'bb_search','bb_search_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