跳至正文

如何在文本中显示提要订阅者数量

如何在文本中显示提要订阅者数量

我相信您已经看到使用基于文本的 Feedburner 订阅者计数而不是 chicklet 的网站和博客。我希望你没有想到这些人手动更新他们的 feed 计数。相反,它可以使用脚本轻松完成,而你想要这样做的原因是——它在设计、样式和显示方面为你提供了完全的灵活性

步骤1

将以下代码复制粘贴到您的模板中,将feedburner-id替换为您的 Feedbuner 用户名。该脚本将为您获取 feed 计数。

1个
2个
3个
4个
5个
6个
7
8个
9
10
11
12
13
14
15
16
17
18
19
20
//get cool feedburner count
$whaturl="http://api.feedburner.com/awareness/1.0/GetFeedData?uri=feedburner-id";
 
//Initialize the Curl session
$ch = curl_init();
 
//Set curl to return the data instead of printing it to the browser.
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
 
//Set the URL
curl_setopt($ch, CURLOPT_URL, $whaturl);
 
//Execute the fetch
$data = curl_exec($ch);
 
//Close the connection
curl_close($ch);
$xml = new SimpleXMLElement($data);
$fb = $xml->feed->entry['circulation'];
//end get cool feedburner count
第2步

将此粘贴到您想要的任何位置,它将以文本形式显示 Feedburner 订阅者数量。

1个
echo $fb;

要使其与您的网站或博客的主题相得益彰,请添加 <p> 或 <div>; 并相应地调整 CSS。

标签:

发表回复