侧边栏和Twitter中的RSS阅读器。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了侧边栏和Twitter中的RSS阅读器。相关的知识,希望对你有一定的参考价值。
To implemented this code is easy, all need to do write down php FeedBurner Counter below in our themes files, example in sidebar.php, header.php or footer.php. Let’s get started, Please note you need replace YOUR FEED ADDRESS with your Feeds,
<?php FeedData?uri=YOUR FEED ADDRESS'); $begin = 'circulation="'; $end = '"'; $page = $url; $page = $parts[1]; $fbcount = $parts[0]; if($fbcount == '') { $fbcount = '0'; } echo '<b> '.$fbcount.' </b> Subscribers'; ?> <?php $begin = '<followers_count>'; $end = '</followers_count>'; $page = $twit; $page = $parts[1]; $tcount = $parts[0]; if($tcount == '') { $tcount = '0'; } echo '<b> '.$tcount.' </b> Followers'; ?>
以上是关于侧边栏和Twitter中的RSS阅读器。的主要内容,如果未能解决你的问题,请参考以下文章