• Resolved kklo

    (@kklo)


    Hi,

    I want to redirect the user after the first registration / registration on the site to the homepage, after a few seconds

    I tried using that line of code in the theme-childtheme functions.php

    add_filter ('registration_redirect', 'my_redirect_home', 99);
    
    function my_redirect_home ($ registration_redirect) {
    return home_url ();
    }

    but it did not work

    Can someone help me?

    Thanks

Viewing 1 replies (of 1 total)
  • necafasu

    (@necafasu)

    Try this code

    function my_redirect_home() {
        return home_url();
    }
    
    add_filter( 'registration_redirect', 'my_redirect_home' );
Viewing 1 replies (of 1 total)
  • The topic ‘Redirect’ is closed to new replies.