• Resolved Tano

    (@tanohex)


    @gurudeb In the next version, could you please add the option to remove the – WordPress text from the Admin Login page title?

    /**
     * Changes the wp-login.php page title and removes the default "WordPress" text
     */
    add_filter( 'login_title', function($login_title) {
        return str_replace(array( ' ‹', ' — WordPress',__('WordPress'),), array( ' ‹', ''), $login_title );
    });
    
    add_filter( 'admin_title', function($admin_title) {
        return str_replace(array( ' ‹', ' — WordPress',__('WordPress'),), array( ' ‹', ''), $admin_title );
    });

    This would help us a bit in white-labeling the Admin area.

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Pankaj Mondal

    (@gurudeb)

    Hi,

    I have added these features in Version 14.0 of the plugin. However I have not used the code you have shared. Please check if this change is suitable or not.

    Thanks & Regards,
    Pankaj

    Thread Starter Tano

    (@tanohex)

    Works great and it looks better the way you implemented it.

    Thanks a lot Pankaj!

    Plugin Author Pankaj Mondal

    (@gurudeb)

    You’re welcome. If possible, please rate and review the plugin.

    Thanks & Regards,
    Pankaj

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove WordPress Text’ is closed to new replies.