{"id":3696,"date":"2022-09-06T13:34:20","date_gmt":"2022-09-06T13:34:20","guid":{"rendered":"https:\/\/purelysupp.com\/wordpress\/?p=3696"},"modified":"2022-10-16T13:57:24","modified_gmt":"2022-10-16T13:57:24","slug":"change-wordpress-login-page-logo","status":"publish","type":"post","link":"https:\/\/purelysupp.com\/wordpress\/code-snippets\/change-wordpress-login-page-logo\/","title":{"rendered":"Change WordPress Login Page logo"},"content":{"rendered":"\n<p>Add the following code to your WordPress theme&#8217;s function.php file, or a functionality plugin to Change WordPress Login Page logo.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Change Style<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\n\nfunction my_login_logo() { ?&gt;\n    &lt;style type=\"text\/css\"&gt;\n        #login h1 a, .login h1 a {\n            background-image: url(&lt;?php echo get_stylesheet_directory_uri(); ?&gt;\/images\/site-login-logo.png);\n            padding-bottom: 30px;\n        }\n    &lt;\/style&gt;\n&lt;?php }\nadd_action( 'login_enqueue_scripts', 'my_login_logo' );<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Enque the Stylesheet<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\n\nfunction my_login_stylesheet() {\n    wp_enqueue_style( 'custom-login', get_stylesheet_directory_uri() . '\/style-login.css' );\n    wp_enqueue_script( 'custom-login', get_stylesheet_directory_uri() . '\/style-login.js' );\n}\nadd_action( 'login_enqueue_scripts', 'my_login_stylesheet' );<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Change the Title<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\n\nfunction my_login_logo_url() {\n    return home_url();\n}\nadd_filter( 'login_headerurl', 'my_login_logo_url' );\n\nfunction my_login_logo_url_title() {\n    return 'Your Site Name and Info';\n}\nadd_filter( 'login_headertitle', 'my_login_logo_url_title' );<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Add the following code to your WordPress theme&#8217;s function.php file, or a functionality plugin to Change WordPress Login Page logo. Change Style Enque the Stylesheet Change the Title<\/p>\n","protected":false},"author":1,"featured_media":3547,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","iawp_total_views":3,"wds_primary_category":56,"footnotes":""},"categories":[56],"tags":[84],"class_list":{"0":"post-3696","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-code-snippets","8":"tag-wp-core","9":"entry"},"featured_image_src":"https:\/\/purelysupp.com\/wordpress\/wp-content\/uploads\/sites\/2\/2018\/09\/code-snippits-600x400.jpg","featured_image_src_square":"https:\/\/purelysupp.com\/wordpress\/wp-content\/uploads\/sites\/2\/2018\/09\/code-snippits-600x515.jpg","author_info":{"display_name":"Jack Alltrade","author_link":"https:\/\/purelysupp.com\/wordpress\/author\/jacka11trade\/"},"_links":{"self":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts\/3696","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/comments?post=3696"}],"version-history":[{"count":3,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts\/3696\/revisions"}],"predecessor-version":[{"id":10685,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts\/3696\/revisions\/10685"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/media\/3547"}],"wp:attachment":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/media?parent=3696"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/categories?post=3696"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/tags?post=3696"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}