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();
}