有可能使所有类别的最近10篇帖子发布了wordpress输出rss或json,发布了10个或更多帖子吗?
类似的东西:
<categorie>
<title>News</title>
<slug>news</slug>
<lastposts>
<item>
<title>New 1</title>
<url>http://website.com/new1</url>
<thumb>http://website.com/thumbnail_new1.jpg</thumb>
</item>
<item>
<title>New 2</title>
<url>http://website.com/new2</url>
<thumb>http://website.com/thumbnail_new2.jpg</thumb>
</item>
...
</lastposts>
</categorie>
<categorie>
<title>Other</title>
<slug>other</slug>
<lastposts>
<item>
<title>Other 1</title>
<url>http://website.com/other1</url>
<thumb>http://website.com/thumbnail_other1.jpg</thumb>
</item>
<item>
<title>Other 2</title>
<url>http://website.com/other2</url>
<thumb>http://website.com/thumbnail_other2.jpg</thumb>
</item>
...
</lastposts>
</categorie>
...
我已经尝试使用http://www.example.com/?cat=42,43&feed=rss2
,但每个类别不会显示10个帖子。
由于