コンテンツ領域のすべてのサブページのページリストを取得しようとしています..しかし、以下のコードを使用すると、40個のサブページのうち10個しか表示されません...
修正方法を教えてください。
<ul class="subpages-pro" style="margin-top:20px;">
<span style="display:none;"><?php the_ID(); ?></span>
<?php $parent = $post->ID; ?>
<?php
query_posts('order=ASC&post_type=page&post_parent='.$parent);
while (have_posts()) : the_post();
?>
<?php $image_thumb = get_post_meta($post->ID, 'image-thumb', true); ?>
<li><?php the_post_thumbnail(); ?>
<h4><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h4>
<?php the_excerpt(); ?>
</li>
<?php endwhile; ?>
</ul>