您必须修改旧主题的function.php
. 添加以下代码:
function redirect_posts() {
global $post;
if ($post->post_type==\'post\') {
return header(\'location:http://newblog.com/posts/\'.$post->post_name);
}
}
add_action(\'wp\', \'redirect_posts\');
The
if
codintion将检查当前查看的页面是否是帖子,并根据旧博客帖子的slug返回指向新博客的标题重定向。