Xiu主题置顶文章随机调用,让置顶文章都有机会展示

Author: 陌小雨Date: 2015-03-15View: 5

陌小雨用的xiu主题首页焦点图区域置顶文章默认的是调用日期最近的4篇置顶文章,可是我们一般置顶文章随着时间推移会越来越多,因为是置顶文章嘛,那肯定是陌小雨觉得很值得看的文章,那么下面这个办法就是实现Xiu主题置顶文章随机调用,让置顶文章都有机会展示,是不是也有利于搜索引擎呢,(*^__^*) 嘻嘻。

在xiu主题目录文件functions.xiu.php搜索代码:

hui_posts_focus()

然后修改

query_posts( array( 'post__in' => $sticky, 'caller_get_posts' => 1, 'showposts' => 4 ) );

query_posts( array( 'post__in' => $sticky, 'caller_get_posts' => 1, 'showposts' => 4,'orderby' => 'rand' ) );

也就是添加一个orderby =>rand参数即可

修改后如下图:
20150307100138

刷新首页试试吧!