使用Getu Transient和Wpu Remoteu Get获取Facebook粉丝数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Getu Transient和Wpu Remoteu Get获取Facebook粉丝数相关的知识,希望对你有一定的参考价值。
function get_fan_count(){ $fb_id = '106900272716297'; $count = get_transient('fan_count'); if ($count !== false) return $count; $count = 0; $data = wp_remote_get('http://api.facebook.com/restserver.php?method=facebook.fql.query&query=SELECT%20fan_count%20FROM%20page%20WHERE%20page_id='.$fb_id.''); if (is_wp_error($data)) { return 'whoa error!!!'; }else{ $count = strip_tags($data[body]); } set_transient('fan_count', $count, 60*60*24); // 24 hour cache return $count; } Add the this into your WordPress theme in the location you wish to display the count. <? echo get_fan_count(); ?>
以上是关于使用Getu Transient和Wpu Remoteu Get获取Facebook粉丝数的主要内容,如果未能解决你的问题,请参考以下文章