有时候我们需要调用随机文章,那就上代码。
<?php
global $post;
$postid = $post->ID;
$args = array( 'orderby' => 'rand', 'post__not_in' => array($post->ID), 'showposts' => 3,'ignore_sticky_posts' => 1);
$query_posts = new WP_Query();
$query_posts->query($args);
?>
<?php while ($query_posts->have_posts()) : $query_posts->the_post(); ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
注意://’showposts’ => 3,这里边的3,就是表示3条记录,按需更改;数字1这块表示的是剔除置顶文章,如果是在首页使用这个代码的话还是很有必要加上这一句的,如果不需要剔除,把这一句,’ignore_sticky_posts’ => 1删掉即可。CSS根据自己主题修改。