現在のページの子ページを取得するwpクエリ


32

誰でも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

回答:


70

変更child_ofpost_parentて追加する必要がありますpost_type => 'page'

WordPress codex Wp_query 投稿およびページパラメーター

<?php

$args = array(
    'post_type'      => 'page',
    'posts_per_page' => -1,
    'post_parent'    => $post->ID,
    'order'          => 'ASC',
    'orderby'        => 'menu_order'
 );


$parent = new WP_Query( $args );

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 endif; wp_reset_postdata(); ?>

1
おかげで男は、私が試したpost_parent元が、それはだ 'post_type' => 'page'ことが鍵です-そして、投稿するwordpressのquerysデフォルトのでしょうか?許可されたら回答を受け入れます。
ジョシュ

はい、'post_type' => 'post'デフォルトです。
mrwweb
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.