Add more than 1 button to ‘Follow’
-
Team, I am trying to add more buttons to ‘Follow’ I’ve already added one and it worked fine with Extension Snippet as recommended. However I want to add more Follow buttons like Myspace, Hi5, Blogger, etc.. how can I add more? I tried to duplicate the code or add anew snippet but it says there is an error. Please tell me what to do, find below my current code that works fine, and provide me with the one I need to add to add more buttons to follow. Many Thanks!
function addtoany_add_follow_services( $services ) {
$services[‘example_follow_service’] = array(
‘name’ => ‘Ameba’,
‘icon_url’ => ‘https://s19.postimg.org/xfjap7mtf/246x0w.jpg’,
‘icon_width’ => 32,
‘icon_height’ => 32,
‘href’ => ‘hhttps://ameblo.jp/gamersoundradio/’,
);
return $services;
}
add_filter( ‘A2A_FOLLOW_services’, ‘addtoany_add_follow_services’, 10, 1 );
The page I need help with: [log in to see the link]
- The topic ‘Add more than 1 button to ‘Follow’’ is closed to new replies.