博主们在浏览博客时可能会注意到某些网站中的“随机文章”板块,这样不仅丰富了网站内容,也可能延长了访客在你博客上的停留时间,降低网站的跳出率,有利于SEO!今天就分享下随机调用文章的php代码吧!
代码一:
ID;
$args = array( ‘orderby’ => ‘rand’, ‘post__not_in’ => array($post->ID), ‘showposts’ => 10); // 显示篇数
$query_posts = new WP_Query();
$query_posts->query($args);
?>
have_posts()) : $query_posts->the_post(); ?>