博主们在浏览博客时可能会注意到某些网站中的“随机文章”板块,这样不仅丰富了网站内容,也可能延长了访客在你博客上的停留时间,降低网站的跳出率,有利于SEO!新起点博客今天就分享下随机调用文章的php代码吧!
代码一:
<?php
global $post;
$postid = $post->ID;
$args = array( ‘orderby’ => ‘rand’, ‘post__not_in’ => array($post->ID), ‘showposts’ => 10); // 显示篇数
$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; ?>
代码二:
<?php
$rand_posts = get_posts('numberposts=10&orderby=rand');
foreach( $rand_posts as $post ) :
?>
ps:代码来源于网络,无测试使用。
评论前必须登录!
注册