Home  ›  The Links  ›  Word Press Code Snippets/Tutorials  ›  Re-direct for Login Page

Re-direct for Login Page

function possibly_redirect(){
global $pagenow;
if( ‘wp-login.php’ == $pagenow ) {
wp_redirect(‘devsite/login/’);
exit();
}
}


Leave a Reply

Help us improve the wiki Send Your Comments