Ok already figured out how to add more than 1 button but now the challenge is the correct url
View post on imgur.com
function addtoany_add_follow_services( $services ) {
$services[‘example_follow_service’] = array(
‘name’ => ‘Bitchute’,
‘icon_url’ => ‘https://i.imgur.com/20ELtNU.png’,
‘icon_width’ => 36,
‘icon_height’ => 36,
‘href’ => ‘https://www.bitchute.com/channel/YJmAS1iSOeY3’,
);
add_filter( ‘A2A_FOLLOW_services’, ‘addtoany_add_follow_services’, 10, 1 );
$services[‘example_follow_service_2’] = array(
‘name’ => ‘SubscribeStar’,
‘icon_url’ => ‘https://i.imgur.com/AnTF2Ny.png’,
‘icon_width’ => 36,
‘icon_height’ => 36,
‘href’ => ‘https://www.subscribestar.com/totaldisclosure/’,
);
$services[‘example_follow_service_3’] = array(
‘name’ => ‘GoGetFunding’,
‘icon_url’ => ‘https://i.imgur.com/CddnUwN.png’,
‘icon_width’ => 36,
‘icon_height’ => 36,
‘href’ => ‘https://www.gogetfunding.com/total-disclosure/’,
);
return $services;
}
add_filter( ‘A2A_FOLLOW_services’, ‘addtoany_add_follow_services’, 10, 1 );
NOTICE THAT EVEN WHILE SPECIFYING THE CHANNEL IN THE CODE WONT REFLECT ON WHERE THE ICON WILL TAKE YOU, IT LANDS ON THE MAIN PAGE OF BITCHUTE, INSTEAD OF MY CHANNEL
HELP