Skip to content

Instantly share code, notes, and snippets.

@yxod
Created May 22, 2024 09:55
Show Gist options
  • Save yxod/e186977be1c299d194ff6531a3001968 to your computer and use it in GitHub Desktop.
Save yxod/e186977be1c299d194ff6531a3001968 to your computer and use it in GitHub Desktop.
change admin wordpress
function my_login_stylesheet()
{
wp_enqueue_style('custom-login', get_stylesheet_directory_uri() . '/style-login.css');
}
add_action('login_enqueue_scripts', 'my_login_stylesheet');
function my_login_logo_url()
{
return home_url();
}
add_filter('login_headerurl', 'my_login_logo_url');
function my_login_logo_url_title()
{
return 'Gaminum';
}
add_filter('login_headertext', 'my_login_logo_url_title');
add_filter('login_display_language_dropdown', '__return_false');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment