Page Redirection To Targeted Page
Redirected one page to another page.
//Contact Page Redirection
function my_page_template_redirect()
{
if( is_page( 'home' ) && ! is_user_logged_in() )
{
wp_redirect( home_url( '/wp-admin/' ) );
die;
}
}
add_action( 'template_redirect', 'my_page_template_redirect' );
//Contact Page Redirection
Comments
Post a Comment