📌  相关文章
📜  在 Wordpress 中重定向图像附件页面 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:10.428000             🧑  作者: Mango

代码示例1
function myprefix_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', 'myprefix_redirect_attachment_page' );