WordPress实现让访客随机查看文章功能

前端之家收集整理的这篇文章主要介绍了WordPress实现让访客随机查看文章功能前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

wordpress现在使用于各种各样的网站,博客,商务站,论坛站等等,功能强大地球人都知道,就不赘述了。分享一段代码,可以把访客转到随机文章页面

首先把下面这段代码添加到functions.PHP中。 

add_action('init','random_add_rewrite');
function random_add_rewrite() {
global $wp;
$wp->add_query_var('random');
add_rewrite_rule('random/?$','index.PHP?random=1','top');
}

add_action('template_redirect','random_template');
function random_template() {
if (get_query_var('random') == 1) {
$posts = get_posts('post_type=post&orderby=rand&numberposts=1');
foreach($posts as $post) {
$link = get_permalink($post);
}
wp_redirect($link,307);
exit;
}
}

然后创建一个页面链接为http://yourdomain.com/random 。当用户点击之后就被转接到你博客随机文章页面。

另外如果你使用W3 Total Cache插件了的话,要在exclude list添加以下代码才能成功。

/random/
/index.PHP?random=1

猜你在找的wordpress相关文章