Hi There,
I’d like to redirect the Register menu item to a custom register page. Is there a way to do this?
I have tried putting the following function in my child functions.php file:
add_filter( ‘register_url’, ‘my_register_url’, 10, 2 );
function my_register_url( $register_url, $redirect ) {
return home_url( ‘/signon/’ . $redirect );
}
However it’s not redirecting and still navigating to ../wp-login.php?action=register
Thanks so much.