Quantcast
Channel: WordPress | サポートフォーラム »投稿一覧
Viewing all articles
Browse latest Browse all 900

カスタム投稿タイプページのリダイレクト

$
0
0

特定のカスタム投稿タイプのページを自動削除した場合に固定ページにリダイレクトさせたいのですがその場合、以下のコードのhome_url()をどのように変更すればいいのかお分かりになる方がいらっしゃいましたらご教示いただけませんでしょうか。よろしくお願いいたします。

function custom_redirect() {
if( is_singular( 'カスタム投稿タイプのスラッグ' ) ){
wp_safe_redirect( home_url(), 301 );
exit();
}
}
add_action( 'template_redirect', 'custom_redirect' );

Viewing all articles
Browse latest Browse all 900

Trending Articles