Wordpress自定义rss或json feed

时间:2014-09-02 13:09:43

标签: php json wordpress rss feed

有可能使所有类别的最近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个帖子。

由于

1 个答案:

答案 0 :(得分:1)

是的,你可以。试试这个tutorial