2017-07-10 63 views
0

我有一個網站使用標籤和分類,並且爲兩者設置RSS供稿的鏈接。標準WordPress分類供稿網址缺少相應的帖子

標準的WordPress RSS提要URL格式爲工作標籤: example.com/tag/computers/feed

的上面會顯示在RSS提要的「電腦」標籤的所有職位。

然而,當我做同樣的類別:

example.com/category/west/feed

我得到的是一個RSS feed沒有「項目」的標籤,那就是沒有職位。我確信我的帖子有分類給他們,並且他們已經發布。我嘗試了不同的類別,並與Feed網址具有相同的結果。這裏是我的所有類飼料的樣子:

<?xml version="null" encoding="null"?> 
<rss version="2.0" 
xmlns:content="http://purl.org/rss/1.0/modules/content/" . 
xmlns:wfw="http://wellformedweb.org/CommentAPI/" . 

xmlns:dc="http://purl.org/dc/elements/1.1/" . 

xmlns:atom="http://www.w3.org/2005/Atom" 

xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" 
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"> 

<channel> 
<title>MySite</title> 
<atom:link href="http://example.com/blogs/category/agile- 
commerce/feed/" rel="self" type="application/rss+xml"/> 
<link>http://example.com</link> 
<description>Challenge thinking. Lead change.</description> 
<lastBuildDate>Mon, 10 Jul 2017 15:28:33 +0000</lastBuildDate> 
<language>en-US</language> 
<sy:updatePeriod>hourly</sy:updatePeriod> 
<sy:updateFrequency>1</sy:updateFrequency> 
<generator>https://wordpress.org/?v=4.8</generator> 
</channel> 
</rss> 
+0

僅供參考,我也保存在WordPress的固定鏈接設置來刷新它們,但無濟於事。 – Cnote

回答

0

找到了答案:這是插件「分類標籤頁」,允許類被分配到頁面。我禁用了該插件,並且WP類別供稿再次運行。

相關問題