此函数将检查您是否在类别页面上,并302重定向到该类别中的最新帖子。把它放在你的主题函数中。php文件。
function my_check_if_cat(){
if ( is_category() ) :
$category = get_the_category();
$latest = query_posts(\'showposts=1&cat=\'.$category[0]->cat_ID);
if(have_posts()) :
wp_redirect(get_permalink($post->ID), 302);
endif;
endif;
}
add_action(\'template_redirect\',\'my_check_if_cat\');