Wordpress网站RSS Feed链接

时间:2013-08-08 22:35:13

标签: wordpress rss feedburner

我正在尝试为用户添加链接,以使用RSS Feed订阅我的博客。

<div id="rss_link" style="margin-left:35%; margin-right:20%; width:10em;">
<a href="http://therearenoroads.com/feed">
<img style="width:90px; height:90px;" src="http://blog.sironaconsulting.com/.a/6a00d8341c761a53ef0120a7abc384970b-120wi" alt="RSS   Link" />
</div>
<p style="font-size:1.3em; text-align:center;">Feed of TANR Knowledge</p>
</a>

这是链接上显示的错误......

此XML文件似乎没有与之关联的任何样式信息。文档树如下所示。

...然后是一大堆代码。

这个问题可能是什么想法?

2 个答案:

答案 0 :(得分:1)

您正在</div>元素中关闭<a>。你可能想要这样的东西:

<div id="rss_link" style="margin-left:35%; margin-right:20%; width:10em;">
    <a href="http://therearenoroads.com/feed">
        <img style="width:90px; height:90px;" src="http://blog.sironaconsulting.com/.a/6a00d8341c761a53ef0120a7abc384970b-120wi" alt="RSS   Link" />    
        <p style="font-size:1.3em; text-align:center;">Feed of TANR Knowledge</p>
    </a>
</div>

此外,当您单击大多数RSS源时,Chrome中也会发生这种情况,因为它没有rss订阅小部件。在firefox中,Feed的处理更顺畅。

答案 1 :(得分:1)

这不是一个错误,而是关于如何呈现您的Feed的说明。它让您知道您的Feed没有被设置样式并且以原始形式输出。这不一定是“坏”,因为它仍然可以用作RSS提要。它不会那么漂亮。比较:http://news.google.com/?output=rss(没有样式的有效RSS源)和http://feeds.bbci.co.uk/news/rss.xml?edition=int(样式RSS)