누구든지 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