wp_bouncer_redirect_url is not working
-
I am adding in code snippets the recipe (wp_bouncer_redirect_url) to redirect to a specific page when there are multiple logins, but it does not work. It keeps redirecting me to home.
add_filter( ‘wp_bouncer_redirect_url’, ‘my_wp_bouncer_redirect_url’ );
function my_wp_bouncer_redirect_url( $return_url )
{ $return_url = home_url( ‘/slug-costum-page/’ );
return $return_url; }
can you help me?
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘wp_bouncer_redirect_url is not working’ is closed to new replies.