【发布时间】:2012-03-08 07:49:51
【问题描述】:
这个我想不通……
我有一个用作照片库博客的 Wordpress。
我使用帖子的主要默认循环进行了基本设置。
像这样:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
//the post
<?php endwhile; ?>
<b>Not Found</b>
<?php endif; ?>
在侧边栏和任何地方,我想随机显示帖子。
我已经做到了。有了这个:
<?php query_posts($query_string . 'showposts=1&orderby=rand'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
//the post
<?php endwhile; endif; ?>
看起来棒极了!理论上。
到处都是重复的帖子。这看起来很愚蠢。
我已经阅读了很多文章,但我似乎无法让它发挥作用:(
任何帮助将不胜感激。
【问题讨论】:
-
尝试将其发布到WORDPRESS.STACKEXCHANGE
标签: php wordpress loops random