你要问的是如何将访问者重定向到随机帖子。给你:
<?php
/*
* Template Name: Random Redirect
*/
query_posts(
array(
\'showposts\' => 1,
\'orderby\' => \'rand\',
)
);
if (have_posts()) : while (have_posts()) : the_post();
header( \'Location: \' . get_the_permalink() , false , 303 );
The
syntax 是
void header ( string $string [, bool $replace = true [, int $http_response_code ]] )
。。。303状态代码命名为“见其他”。