Skip to content

Instantly share code, notes, and snippets.

@jas8522
Last active September 14, 2020 03:14
Show Gist options
  • Save jas8522/dc85b2d88766c82adf7ff74230a3e6c0 to your computer and use it in GitHub Desktop.
Save jas8522/dc85b2d88766c82adf7ff74230a3e6c0 to your computer and use it in GitHub Desktop.
Creates fl_social_icons shortcode for inserting BeaverBuilder theme shortcodes in your content
/**
* Custom Social Icons Shortcode: [fl_social_icons circle=true]
*/
function ws_social_icons( $atts ) {
extract( shortcode_atts( array(
'circle' => true,
), $atts, 'multilink' ) );
ob_start( );
FLTheme::social_icons( $atts['circle'] );
return ob_get_clean( );
}
add_shortcode( 'fl_social_icons', 'ws_social_icons' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment