花了很多时间来搜索我的任务的解决方案,但我找不到它。所以我有 2 个站点,第一个是介绍公司,第二个是公司博客,它们安装在不同的数据库上,所以我需要从博客中获取最新的帖子、评论、蚂蚁类别。帖子和评论是通过使用 RSS 提要完成的,但主要问题是类别。如何从第二个站点获取第一个站点中的所有类别列表?
问问题
689 次
1 回答
3
To achieve this recipe, simply paste the following code anywhere on your theme. It will
output a list of your categories with a link to the category rss feed.
<?php wp_list_categories('feed_image=http://www.myblog.com/image.gif&feed=XML Feed&optioncount=1&children=0'); ?>
The two parameters used here are:
feed_image: The url of the image to display as a link to your feed.
feed: The feed format
于 2012-11-01T17:05:13.573 回答