こちらお試しください。
function custom_redirect() {
if( is_singular('カスタム投稿タイプのスラッグ') ) {
wp_safe_redirect( home_url('/fixed-page-slug/'), 301 ); // 固定ページのスラッグに変更
exit();
}
}
add_action( 'template_redirect', 'custom_redirect' );
参考ページ
こちらお試しください。
function custom_redirect() {
if( is_singular('カスタム投稿タイプのスラッグ') ) {
wp_safe_redirect( home_url('/fixed-page-slug/'), 301 ); // 固定ページのスラッグに変更
exit();
}
}
add_action( 'template_redirect', 'custom_redirect' );
参考ページ