require(\'../wp-blog-header.php\');
query_posts(\'&showposts=-1&order=ASC\');
while (have_posts()) : the_post();
$url = the_permalink();
$json = file_get_contents( \'https://graph.facebook.com/fql?q=SELECT%20like_count,%20total_count,%20share_count,%20click_count,%20comment_count%20FROM%20link_stat%20WHERE%20url%20=%20%27\' . $url . \'%27\' );
$json_data = json_decode($json, false);
echo $json_data->data[0]->total_count;
echo \'<br>\';
endwhile;
上面的代码不是返回总的共享计数,而是返回posts URL。
如何使其返回每个帖子的total\\u count值?我怀疑在下一行执行任务之前,第6行需要首先返回URL。。
当做
谢谢