缓存的Twitter关注者计数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了缓存的Twitter关注者计数相关的知识,希望对你有一定的参考价值。

  1. function get_follower_Count(){
  2. $count = get_transient('follower_count');
  3. if ($count !== false) return $count;
  4. $count = 0;
  5. $data = wp_remote_get('http://api.twitter.com/1/users/show.json?screen_name=YOURNAME');
  6. if (!is_wp_error($data)) {
  7. $value = json_decode($data['body'],true);
  8. $count = $value['followers_count'];
  9. }
  10. set_transient('follower_count', $count, 60*60); // 1 hour cache
  11. return $count;
  12. }
  13.  
  14. Add the first section of code to the functions.php of your wordpress theme. This code will cache your Twitter follower number for 1 hour and display the count within your template.
  15.  
  16.  
  17. <?
  18. get_follower_count();
  19. ?>
  20.  
  21.  

以上是关于缓存的Twitter关注者计数的主要内容,如果未能解决你的问题,请参考以下文章

在 Twitter 的关注按钮中隐藏“关注者”一词

获取关注者的姓名 - Twitter

从 twitter 获取关注者是不是有任何限制

使用 Selenium 从 Twitter 抓取关注者

抓取 Twitter 用户和关注者数据

PHP 在Twitter上取消关注所有关注者