템플릿이 읽히는 단계에서 원하는 곳으로 이동 시키고자 할 때
/**
* 리다이렉트 필요 시
*/
function custom_page_redirect() {
if (is_singular('us_portfolio')) {
$location = get_site_url() . "/";
wp_redirect( $location );
die;
}
}
add_action( 'template_redirect', 'custom_page_redirect' );