WordPress 第二页显示的内容与我的第一页相同
我看到第二页显示的内容与第一页完全相同。
我在网上关注了一些文章,
<?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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是你的问题:
它应该是:
注意到不同的引号吗?
在单引号上,美元符号按原样处理,不解析为变量 如 PHP 文档中所述:
here's your problem:
it should be:
Notice the different quote sign?
on single quote, dollar sign is treated as is, not parsed as variable as stated in PHP doc: