• Resolved hn05

    (@hn05)


    Hi, I want to know that if there is a way to change the WordPress login page title

Viewing 1 replies (of 1 total)
  • Plugin Contributor Abdul Wahab

    (@abdulwahab610)

    Hello, @hn05

    You can use the following snippet into your child theme’s functions.php for changing the title.

    add_filter('login_title', loginpress_login_title, 99);
    function loginpress_login_title($origtitle) { 
        return get_bloginfo('name');
    }

    P.S: Change the value with get_bloginfo('name') which one you want.

    Thank you.

Viewing 1 replies (of 1 total)
  • The topic ‘How to change Login Page title?’ is closed to new replies.