需要有关WorpDress父子属性的帮助

时间:2022-01-19 作者:Satish Sharma

例如,我的主要文章都是用默认的wordpress帖子编写的,现在我有了名为ENERGY的自定义帖子类型,我想在其中添加主要帖子作为此ENERGY CPT的父级。

Wordpress帖子=家长能量CPT=孩子

请帮我写代码。

再举一个例子:我想把能量帖子10(作为孩子)和主wordpress帖子20(作为家长)联系起来

我有100个帖子,请帮忙。

1 个回复
SO网友:Willy Richardson

enter image description here

通常,父子关系是通过页面类型完成的。请参见我所附图像的右侧,其中显示的是“the right side of image I attached where is says”;父级;。在单个帖子类型中,我认为您还可以使用父子类别。可能对于两种帖子类型,您可以使用一种分类法,也可以使用父子类别。通常不建议使用。否则,我想您必须设置一个元字段并存储父ID。

一般来说,多个职位类型没有绩效增益,它们存储在同一个;wp\\U帖子;桌子通常使用多种立柱类型,如独立的筒仓。

这是一个自定义的层次结构帖子类型,其行为类似于页面。

add_action( \'init\', \'create_chapter_post_type\' );

function create_chapter_post_type() {
    register_post_type( \'chapters\',
        array(
            \'labels\' => array(
                \'name\' => __( \'Chapters\' ),
                \'singular_name\' => __( \'Chapter\' ),
                \'add_new\' => \'Add New Chapter\',
                \'add_new_item\' => \'Add New Chapter\'
            ),
            \'public\' => true,
            \'hierarchical\' => true,
            \'supports\' => array(\'title\', \'editor\', \'page-attributes\', \'custom-fields\')
        )
    );
}
默认情况下,页面也支持父子关系。

相关推荐