1
wp查询以获取当前页面的子页面
谁能帮我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> …