You appear to be a bot. Output may be restricted
Description
Implement [bw_follow_me me="My name" network="Twitter,Facebook"] shortcodeProduce a Follow me button for each of these networks: Twitter, Facebook, LinkedIn, YouTube, Flickr, Pinterest, Instagram, GitHub and WordPress or a selected set identified by network= parameter
Usage
$string = bw_follow_me( $atts );
Parameters
- $atts
- ( array ) optional – array of parameters
Returns
string a set of "Follow me" links for the networks.Source
File name: oik/shortcodes/oik-follow.phpLines:
1 to 9 of 9
function bw_follow_me( $atts=null ) { $networks = bw_follow_me_networks( $atts ); $atts['me'] = bw_get_me( $atts ); foreach ( $networks as $network ) { $atts['network'] = $network; bw_follow_e( $atts ); } return( bw_ret()); }View on GitHub View on Trac