我有自定义帖子类型设置 - 称为项目并启用子页面。当我在父页面上时,我想在父页面上查询子页面的内容。
这是我的尝试。这会查询所有称为项目的自定义帖子类型。谁能帮我查询子页面?
<?php
$args = array(
'child_of' => $post->ID,
'post_type' => 'projects',
'order' => 'ASC',
'orderby' => 'menu_order'
);
$wpq = new WP_Query( $args );
if( $wpq->have_posts() ): while( $wpq->have_posts() ): $wpq->the_post(); ?>
<div id="parent-<?php the_ID(); ?>" class="parent-page">
<?php echo the_content();?>
</div>
<?php endwhile; ?>
<?php endif; wp_reset_query(); ?>