首页    >    新闻资讯    >   在WordPress上显示你的Twitter followers数量

在WordPress上显示你的Twitter followers数量

最近twitter在中文博客圈子里火起来了,相关的插件、修改方法也出了不少。下面介绍一种在WordPress上显示你的Twitter followers数量的方法。

打开functions.php,添加如下代码:

function string_getInsertedString($long_string,$short_string,$is_html=false){
  if($short_string>=strlen($long_string))return false;
  $insertion_length=strlen($long_string)-strlen($short_string);
  for($i=0;$i<strlen($short_string);++$i){
    if($long_string[$i]!=$short_string[$i])break;
  }
  $inserted_string=substr($long_string,$i,$insertion_length);
  if($is_html && $inserted_string[$insertion_length-1]=='<'){
    $inserted_string='<'.substr($inserted_string,0,$insertion_length-1);
  }
  return $inserted_string;
}

function DOMElement_getOuterHTML($document,$element){
  $html=$document->saveHTML();
  $element->parentNode->removeChild($element);
  $html2=$document->saveHTML();
  return string_getInsertedString($html,$html2,true);
}

function getFollowers($username){
  $x = file_get_contents("http://twitter.com/".$username);
  $doc = new DomDocument;
  @$doc->loadHTML($x);
  $ele = $doc->getElementById('follower_count');
  $innerHTML=preg_replace('/^<[^>]*>(.*)<[^>]*>$/',"\1",DOMElement_getOuterHTML($doc,$ele));
  return $innerHTML;
}

然后在需要显示的位置粘贴下面这行代码:

<?php echo getFollowers("catswhocode")." followers"; ?>

大功告成!

分类:新闻资讯

标签:,

* 版权声明:作者WordPress啦! 转载请注明出处。