在页面加载序列中,您太晚了,无法重定向。在将标题发送到浏览器之前,需要重定向。这个template_redirect
挂钩应该是一个不错的选择:
function redirect_cat_wpse_207298() {
if (is_category()) {
global $post;
wp_safe_redirect(get_permalink($post->ID));
die;
}
}
add_action(\'template_redirect\',\'redirect_cat_wpse_207298\');