如何在我的 WordPress 网站中显示 Instagram 关注者计数器?
How to show the Instagram followers counter in my WordPress website?
如何在我的 WordPress 网站中显示 Instagram 关注者计数器请参见屏幕截图。 Screenshots Image
你能检查下面的代码吗?
$api_key = 'API_KEY';
$user_id = 'UID';
$data = @file_get_contents("https://api.instagram.com/v1/users/$user_id/?client_id=$api_key");
$data = json_decode($data, true);
echo '<pre/>';
print_r($data);
echo $data['data']['counts']['followed_by'];
如何在我的 WordPress 网站中显示 Instagram 关注者计数器请参见屏幕截图。 Screenshots Image
你能检查下面的代码吗?
$api_key = 'API_KEY';
$user_id = 'UID';
$data = @file_get_contents("https://api.instagram.com/v1/users/$user_id/?client_id=$api_key");
$data = json_decode($data, true);
echo '<pre/>';
print_r($data);
echo $data['data']['counts']['followed_by'];