我用这个片段来显示故事的章节。但不知道为什么,它是有限的,只显示10个项目。我无法解决这个问题。请你帮助我,伙计。
global $post;
$args = array(
'post_type' => 'story',
'post_status' => 'publish',
'order' => 'ASC',
'post_parent' => $post->ID
);
$story = new WP_Query( $args );
if( $story->have_posts() ) : ?>
<div class="story__main">
<h2 class="story__title-chapter">Danh sách các chương</h2>
<ul class="story__chapter">
<?php
while( $story->have_posts() ) :
$story->the_post();?>
<li>
<a href=<?php echo the_permalink();?>><?php echo get_the_title();?></a>
</li>
<?php endwhile;?>
</ul>
</div>
<?php endif;
森栏