You appear to be a bot. Output may be restricted
Description
Create a styled follow me button
Usage
bw_follow( $atts );
Parameters
- $atts
- ( mixed ) optional –
Returns
voidSource
File name: oik/shortcodes/oik-follow.phpLines:
1 to 17 of 17
function bw_follow( $atts=null ) { $social_network = bw_array_get( $atts, 'network', 'Facebook' ); $lc_social = strtolower( $social_network ); $me = bw_array_get( $atts, "me", null ); if ( !$me ) { $social = bw_array_get( $atts, 'url', null ); if ( !$social ) { $social = bw_get_option_arr( $lc_social, null, $atts ); } } else { $social = $me; } if ( $social ) { bw_follow_link( $social, $lc_social, $social_network, $atts ); } return( bw_ret()); }View on GitHub View on Trac