在主题函数中放置以下代码。php文件。
function one_random_post_on_home_page( $query )
{
if ( ! ( $query->is_home() && $query->is_main_query() ) )
return;
$query->set( \'orderby \', \'rand\' );
$query->set( \'posts_per_page\', 1 );
}
add_action( \'pre_get_posts\', \'one_random_post_on_home_page\' );
我假设你说的是索引。php你是指你的博客主页。索引。主题中的php文件可用于网站的许多其他区域,因此在该文件中进行任何更改可能会在其他地方产生不希望的效果。