Last active
February 24, 2018 22:14
-
-
Save beaverbuilder/511cf90188929711d0be6371c2ae7a36 to your computer and use it in GitHub Desktop.
Search Icon shortcode (must have BB theme active)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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