我注意到了【FB Developer 的新变化】:https ://developers.facebook.com/roadmap/
我想知道您认为我需要在代码中更改什么。我有 wordpress,我有一个计算评论总数的功能,当然它在 7 月 10 日之后仍然需要工作。
function full_comment_count() {
global $post;
$url = get_permalink($post->ID);
$filecontent = file_get_contents('https://graph.facebook.com/?ids=' . $url);
$json = json_decode($filecontent);
$count = $json->$url->comments;
$wpCount = get_comments_number();
$realCount = $count + $wpCount;
if ($realCount == 0 || !isset($realCount)) {
$realCount = 0;
}
return $realCount;
}
是否像改变一样简单:
$count
至
$total_count
还是代码中还需要更改其他内容?谢谢