打开附件详细页时跳转到首页
function redirect_attachment_page()
{
if (is_attachment()) {
global $post;
if ($post && $post->post_parent) {
wp_redirect(esc_url(get_permalink($post->post_parent)), 301);
exit;
} else {
wp_redirect(esc_url(home_url('/')), 301);
exit;
}
}
}
add_action('template_redirect', 'redirect_attachment_page');
评论区
发表新的留言
您可以留言提出您的疑问或建议。
您的留言得到回复时,会通过您填写的邮箱提醒您。