帖子不会“添加”到特定页面。默认情况下,“页面”是静态的,但与Custom Page Templates 你可以让他们做任何事。您需要为每个页面创建模板,并按类别、标记或自定义元字段查询帖子。。。像这样的。
很难确切说出你在做什么以及为什么,但听起来你可能想create a Custom Post Type 对于您现在拥有的每一个页面,然后您可以专门直接向其添加帖子。粘贴Codex中的一些示例代码,如下所示:
function codex_custom_init() {
$args = array( \'public\' => true, \'label\' => \'Books\' );
register_post_type( \'book\', $args );
}
add_action( \'init\', \'codex_custom_init\' );
。。。将其保存到文件中
wp-content/mu-plugins/somefilename.php
, 感受一下它。