第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

請(qǐng)幫助我了解此 php sneppet 上 <li> 的限制

請(qǐng)幫助我了解此 php sneppet 上 <li> 的限制

PHP
慕標(biāo)5832272 2023-09-15 17:39:31
我用這個(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;
查看完整描述

1 回答

?
森欄

TA貢獻(xiàn)1810條經(jīng)驗(yàn) 獲得超5個(gè)贊

嘗試設(shè)置該posts_per_page值。


$args = array(

        'post_type'   => 'story',

        'post_status' => 'publish',

        'order' => 'ASC',

        'post_parent'    => $post->ID,

        'posts_per_page' => -1

    );

重要提示:這可能會(huì)導(dǎo)致非常大的查詢,從而導(dǎo)致站點(diǎn)癱瘓。僅當(dāng)您確定您的數(shù)據(jù)庫可以處理它時(shí)才執(zhí)行此操作。不在公共主題或插件中。


參考


https://codex.wordpress.org/Class_Reference/WP_Query#Pagination_Parameters


查看完整回答
反對(duì) 回復(fù) 2023-09-15
  • 1 回答
  • 0 關(guān)注
  • 143 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)