在Wordpress的任何页面上显示特定父项的子帖子

时间:2018-06-15 17:36:52

标签: wordpress wordpress-theming

我希望能够使用短代码在任何页面上列出特定父级的子帖(主要是自定义帖子类型)。

我发现了这个:Show Child-pages of Specific Parent on any page in Wordpress

并且它很完美,但仅限于“pages”我认为,它不适用于自定义帖子类型。

1 个答案:

答案 0 :(得分:0)

纪莲,

您可以继续使用this link中的代码。 只需在wp_list_pages函数中添加自定义帖子类型。

所以,你将拥有:

$childpages = wp_list_pages( array(
 'child_of' => $post->ID,
 'title_li' => '',
 'post_type' => 'YOUR_CPT_SLUG',
 'echo'     => 0,
) );