WordPress 第二页显示的内容与我的第一页相同

发布于 2024-12-03 16:11:52 字数 431 浏览 0 评论 0原文

我看到第二页显示的内容与第一页完全相同。

我在网上关注了一些文章,

<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; ?>
<?php query_posts('showposts=16&paged=$paged'); ?>

只在我的上面添加了一行

<?php while (have_posts()) : the_post(); ?>

,但它仍然是一样的......请帮助我!

编辑:链接可能会有帮助=> http://nailian.ca/

I'm seeing my 2nd page displaying the exact same content as my first page.

I followed some articles online and added

<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; ?>
<?php query_posts('showposts=16&paged=$paged'); ?>

just one line above my

<?php while (have_posts()) : the_post(); ?>

But it's still the same... please help mee!!

edit: a link might have been helpful => http://nailian.ca/

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

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

发布评论

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

评论(1

阳光下的泡沫是彩色的 2024-12-10 16:11:52

这是你的问题:

<?php query_posts('showposts=16&paged=$paged'); ?>

它应该是:

<?php query_posts("showposts=16&paged=$paged"); ?>

注意到不同的引号吗?
在单引号上,美元符号按原样处理,不解析为变量 如 PHP 文档中所述

注意:与双引号和定界符语法不同,特殊字符的变量和转义序列在单引号字符串中出现时不会被扩展。

here's your problem:

<?php query_posts('showposts=16&paged=$paged'); ?>

it should be:

<?php query_posts("showposts=16&paged=$paged"); ?>

Notice the different quote sign?
on single quote, dollar sign is treated as is, not parsed as variable as stated in PHP doc:

Note: Unlike the double-quoted and heredoc syntaxes, variables and escape sequences for special characters will not be expanded when they occur in single quoted strings.

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