child of post type (custom) 时间:2013-02-28 作者:bboy 我向注册了自定义帖子类型(foo)register_post_type, 背景\'hierarchical\' => true,所以现在我想用的时候post_type=foo.如何查询foo的子级?有什么想法吗?谢谢 1 个回复 最合适的回答,由SO网友:Vinod Dalvi 整理而成 您可以使用以下代码(使用父页面ID)显示特定父foo页面的子页面:$the_query = new WP_Query( \'post_type=foo&post_parent=93\' ); // The Loop while ( $the_query->have_posts() ) : $the_query->the_post(); echo \'<li>\' . get_the_title() . \'</li>\'; endwhile; 结束 文章导航