WordPress 显示帖子代码未显示任何帖子
我使用此代码显示 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该函数仅告诉 WordPress 要输出多少帖子。您仍然需要使用 WP 循环来实际执行输出。
That function only tells Wordpress how many posts to output. You still have to use the WP loop to actually perform the output.