您可能要做的是,为列表设置一个专门的帖子,然后在帖子/页面上执行include以检索列表。
<?php
$my_id = 7 <---this would be the post / page id you set up on for the list;
$post_id_7 = get_post($my_id, ARRAY_A);
$title = $post_id_7[\'post_content\'];
?>
您可以将rss提要设置为仅显示该列表的更新,并且该列表可以包含在其他帖子/页面中。