You appear to be a bot. Output may be restricted
Description
Create the link for the selected theme= parameter
Usage
bw_follow_link( $social, $lc_social, $social_network, $atts );
Parameters
- $social
- ( mixed ) required –
- $lc_social
- ( mixed ) required –
- $social_network
- ( mixed ) required –
- $atts
- ( mixed ) required –
Returns
voidSource
File name: oik/shortcodes/oik-follow.phpLines:
1 to 12 of 12
function bw_follow_link( $social, $lc_social, $social_network, $atts ) { $social = bw_social_url( $lc_social, $social ); $me = bw_get_me( $atts ); $theme = bw_array_get( $atts, "theme", null ); $class = bw_array_get( $atts, "class", null ); $theme_functions = array( "dash" => "bw_follow_link_dash" , "gener" => "bw_follow_link_gener" , "svg" => "bw_follow_link_svg" ); $themefunc = bw_array_get( $theme_functions, $theme, "bw_follow_link_" ); call_user_func( $themefunc, $social, $lc_social, $social_network, $me, $class ); }View on GitHub View on Trac