我不知道如何纠正这一点,但我只想从一个帖子ID重定向到另一个。(就我而言,从1944年后id改为44(。非常感谢。
function redirectPost () {
global $post;
if ($post->ID == 1944) {
wp_redirect( get_page_link( 44 ), 301 );
exit;
}
这可以帮助:
add_filter('the_posts', function(){
$newPostId = 12345;
return [get_post($newPostId)];
});
考虑在插件中而不是在主题中进行。