Ai đó có thể vui lòng giúp tôi với wp_query.
Tôi đang tạo một tệp / vòng lặp mẫu để tạo và lưu trữ trang của các trang con hiện tại.
Truy vấn này cần được tự động như tôi đang sử dụng trên một vài trang.
Đây là truy vấn của tôi dưới đây, nhưng nó chỉ trả về bài viết của tôi thay vì các trang con.
<?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(); ?>
Cảm ơn trước sự giúp đỡ nào.
Josh
Hãy thử giải pháp này == lấy con của một bài đăng - wordpress.stackexchange.com/a/123143/42702
—
T.Todua