beaverbuilder
2/11/2018 - 10:00 PM

Search Icon shortcode (must have BB theme active)

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