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> …