我用這個(gè)片段來顯示故事的章節(jié)。但不知道為什么,它是有限的,只顯示10個(gè)項(xiàng)目。我無法解決這個(gè)問題。請(qǐng)你幫助我,伙計(jì)。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;
請(qǐng)幫助我了解此 php sneppet 上 <li> 的限制
慕標(biāo)5832272
2023-09-15 17:39:31