我該如何更改它,所以在前三個帖子之后它會停止回圈并在單獨的行中回傳其余帖子
<?php
$the_query = new WP_Query( 'posts_per_page=3' );
?>
<?php
while ($the_query -> have_posts()) : $the_query -> the_post();
?>
<div class="col-md-4">
<a href="<?php the_permalink() ?>">
<?php the_title(); ?>
</a>
<?php the_excerpt(__('(more…)')); ?>
</div>
<?php
endwhile;
wp_reset_postdata();
?>
uj5u.com熱心網友回復:
posts_per_page=3只會回傳 3 個帖子,因此您必須將該值更改為要在該頁面上顯示的帖子數(在您的情況下為摘錄)。
轉載請註明出處,本文鏈接:https://www.uj5u.com/qianduan/486736.html
上一篇:搜索最低價商品功能
