为wordpress添加随机文章的方式很多,今天大挖给大家推荐一种最高效的为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> |
大挖给大家举例出了上面这段代码的优缺点,供参考。
优点:简单易用,方便开发及拓展,消耗资源少。
缺点:每次wordpress主题升级或更换主题模版都需要重新修改网站内容模板。