谁能帮我wp_query。
我正在制作一个模板文件/循环来创建和归档当前页面子页面的页面。
正如我在几页中使用的那样,此查询需要是自动的。
这是我在下面的查询,但只返回我的帖子而不是子页面。
<?php
$parent = new WP_Query(array(
'post_parent' => $post->ID,
'order' => 'ASC',
'orderby' => 'menu_order',
'posts_per_page' => -1
));
if ($parent->have_posts()) : ?>
<?php while ($parent->have_posts()) : $parent->the_post(); ?>
<div id="parent-<?php the_ID(); ?>" class="parent-page">
<h1><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1>
<p><?php the_advanced_excerpt(); ?></p>
</div>
<?php endwhile; ?>
<?php unset($parent); endif; wp_reset_postdata(); ?>
在此先感谢您的帮助。
乔希
尝试这种解决方案==获得后的孩子- wordpress.stackexchange.com/a/123143/42702
—
T.Todua