gpt4 book ai didi

php - Wordpress 代码仅显示 1 个帖子

转载 作者:行者123 更新时间:2023-12-04 06:25:19 25 4
gpt4 key购买 nike

我正在使用此代码:

<?php
query_posts( 'posts_per_page=5' );


while ( have_posts() ) : the_post();
echo '<li>';
the_title();
echo '</li>';
endwhile;

wp_reset_query();
?>

代码有效,但有 2 个帖子,它只返回最新的一个。

我需要它来显示它们。

有人可以帮忙吗?

谢谢

最佳答案

尝试这个:

 $query = new WP_Query('posts_per_page=5');

while( $query ->have_posts() ) : $query ->the_post();
echo '<li>';
the_title();
echo '</li>';
endwhile;

wp_reset_postdata();

关于php - Wordpress 代码仅显示 1 个帖子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6112597/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com