从模板重定向到父页面 - Wordpress

时间:2018-04-13 08:40:05

标签: php wordpress templates redirect

我有一个模板,我在他的父页面中使用了一个块,我想重定向这个模板。

您能告诉我如何将我的页面重定向到他的父页面?

我不知道如何在我的钩子中检测到模板...

我想做类似的事情:

add_action( 'template_redirect', 'wpnc_redirect_single' );
function wpnc_redirect_single() {
    $queried_post_type = get_query_var('post_type');
    if ( is_single() && 'reference' ==  $queried_post_type ) {
        wp_redirect( home_url(), 301 );
        exit;
    }
}

但这是自定义类型

由于

1 个答案:

答案 0 :(得分:1)

if (is_page_template("templates/template-pdf.php")){
wp_redirect( home_url(), 301 );
 exit;
 }

喜欢那个