WordPress 显示帖子代码未显示任何帖子

发布于 2024-11-09 21:05:06 字数 266 浏览 0 评论 0原文

我使用此代码显示 5 个帖子(任何帖子都可以)

<div id="featured-post-section">
    <div id="post-list">1
    <?php query_posts( 'posts_per_page=5' ); ?>2

如您所见,我添加了 1 和 2 数字.... 前一个和后一个 ... 我只得到 1 2 ... 没有帖子完全显示出来。

我做错了什么?

I am using this code to show 5 posts (any post's would do)

<div id="featured-post-section">
    <div id="post-list">1
    <?php query_posts( 'posts_per_page=5' ); ?>2

As you can see, I've added a 1 and 2 numbers.... One before and one after ... I only get 1 2 ... No posts are showing at all.

What am I doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

薄荷梦 2024-11-16 21:05:06

该函数仅告诉 WordPress 要输出多少帖子。您仍然需要使用 WP 循环来实际执行输出

<?php

// The Query
query_posts( 'posts_per_page=5' );

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

// Reset Query
wp_reset_query();

That function only tells Wordpress how many posts to output. You still have to use the WP loop to actually perform the output.

<?php

// The Query
query_posts( 'posts_per_page=5' );

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

// Reset Query
wp_reset_query();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文