你好任何人都可以帮助我,我需要从wordpress生成自定义xml文件最近的帖子我该怎么做?我需要在Windows 8的瓷砖中使用。如何使用wordpress生成xml文件?格式我想生成是
<tile>
<visual>
<binding template="TileWideText09">
<text id="1">wordpress auto title here</text>
<text id="2">wordpress auto description here</text>
</binding>
</visual>
</tile>
我不知道该怎么做,请帮助我。
答案 0 :(得分:0)
您需要查询Wordpress以查找要使用的帖子,例如使用wp_query()
.(如果您习惯使用The Loop)或使用get_posts()
(更多“programmery”方式)
使用生成的数据,然后按照中所述构建XML输出 How to generate XML file dynamically using PHP?