在 Wordpress 页面中显示多个页面的最佳方式是什么。我只想在阅读更多内容之前显示文本。以下代码显示全部内容,而不仅仅是阅读更多内容。
$args=array(
'orderby' =>'parent',
'order' =>'asc',
'post_type' =>'page',
'post__in' => array(9,24,33),
);
$page_query = new WP_Query($args); ?>
<?php while ($page_query->have_posts()) : $page_query->the_post(); ?>
<article class="g320">
<?php the_content("Lees meer",true);?>
</article>
<?php endwhile; ?>