在使用wordpress资讯类文章时,相关文章推荐,同分类栏目文章推荐,还有一个就是随机文章推荐,这对于一些猎奇心强的访客来讲会非常的有吸引力,可以有效的增加用户停留时长,同时可以更好的对wordpress网站的seo优化带来不错的收录与排名。
今天我们重要将一下wordpress随机文章中的核心原理要素orderby =>rand,WordPress 的文章查询函数 get_posts(),orderby的作用是指明了获取文章时的排序方式。
使用方法如下:
1 2 |
$args = array( 'numberposts' => 5, 'orderby' => 'rand', 'post_status' => 'publish' ); $rand_posts = get_posts( $args ); |
最后给大家分享一段可以直接用到wordpress主题内的代码,直接复制到主题就行。
1 2 3 4 5 6 7 8 |
<ul> <?php $args = array( 'numberposts' => 5, 'orderby' => 'rand', 'post_status' => 'publish' ); $rand_posts = get_posts( $args ); foreach( $rand_posts as $post ) : ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endforeach; ?> </ul> |