{"id":127,"date":"2012-02-03T23:50:20","date_gmt":"2012-02-03T23:50:20","guid":{"rendered":"https:\/\/theextremewebdesigns.com\/blog\/?p=127"},"modified":"2012-02-03T23:50:20","modified_gmt":"2012-02-03T23:50:20","slug":"wordpress-change-logo-on-login-page","status":"publish","type":"post","link":"https:\/\/theextremewebdesigns.com\/blog\/wordpress-change-logo-on-login-page\/","title":{"rendered":"WordPress Change logo on Login page (2 Ways)"},"content":{"rendered":"<p>If you ever wanted to make WordPress change logo on Login page\u00a0or customize it, this snippet can help you.\u00a0<!--more--><\/p>\n<h2>How to Change logo on Login page using WordPress<\/h2>\n<p>Note the following WordPress logo on the login page.<br \/>\n<a href=\"https:\/\/theextremewebdesigns.com\/blog\/wp-content\/uploads\/2012\/02\/wordpress_change_default_logo.png\" class=\"broken_link\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-medium wp-image-129\" title=\"Wordpress: Change\/Customize Default Logo\" alt=\"Wordpress: Change\/Customize Default Logo\" src=\"https:\/\/theextremewebdesigns.com\/blog\/wp-content\/uploads\/2012\/02\/wordpress_change_default_logo-300x258.png\" width=\"300\" height=\"258\" \/><\/a><\/p>\n<p>To change it, just add the follow inside of your theme\u2019s functions.php file. If you don\u2019t have this functions.php file, then manually create one.<\/p>\n<pre class=\"lang:php decode:true\">&lt;?php\nfunction customize_login_logo()\n{\n\/\/Method 1:\necho '&lt;img src=\"'. get_template_directory_uri() .'\/images\/logo.jpg\" \/&gt;';\n\n\/\/Method 2:\necho '&lt;img src=\"'. get_bloginfo('template_directory') .'\/images\/logo.jpg\" \/&gt;';\n}\nadd_action('login_head', 'customize_login_logo');\n?&gt;<\/pre>\n<p>If you would like the logo to link back to the blog site, you may use the enhanced code below:<\/p>\n<pre class=\"lang:php decode:true\">&lt;?php\nfunction customize_login_logo()\n{\n\/\/Method 1:\necho '&lt;a href=\"'. get_bloginfo( 'siteurl' ) .'\"&gt;\n&lt;img src=\"'. get_template_directory_uri() .'\/images\/logo.jpg\" \/&gt;\n&lt;\/a&gt;';\n\n\/\/Method 2:\necho '&lt;a href=\"'.get_bloginfo( 'siteurl' ) . '\"&gt;\n&lt;img src=\"'. get_bloginfo('template_directory') .'\/images\/logo.jpg\" \/&gt;\n&lt;\/a&gt;';\n}\nadd_action('login_head', 'customize_login_logo');\n?&gt;<\/pre>\n<h5>That&#8217;s it!<\/h5>\n<p>Do you know of any other way to change or <em><strong>customize the logo on WordPress Login page<\/strong><\/em>? If yes, please share it with us in your comments below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you ever wanted to make WordPress change logo on Login page\u00a0or customize it, this snippet can help you.\u00a0<\/p>\n","protected":false},"author":1,"featured_media":129,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[6,13,11,8],"tags":[31,30],"class_list":["post-127","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-snippets","category-tips-and-tricks","category-wordpress-tips-and-tricks","category-wordpress","tag-wordpress-snippets","tag-wordpress-tips"],"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/paBnQX-23","jetpack_sharing_enabled":true,"post_mailing_queue_ids":[],"_links":{"self":[{"href":"https:\/\/theextremewebdesigns.com\/blog\/wp-json\/wp\/v2\/posts\/127","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/theextremewebdesigns.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/theextremewebdesigns.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/theextremewebdesigns.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/theextremewebdesigns.com\/blog\/wp-json\/wp\/v2\/comments?post=127"}],"version-history":[{"count":0,"href":"https:\/\/theextremewebdesigns.com\/blog\/wp-json\/wp\/v2\/posts\/127\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/theextremewebdesigns.com\/blog\/wp-json\/"}],"wp:attachment":[{"href":"https:\/\/theextremewebdesigns.com\/blog\/wp-json\/wp\/v2\/media?parent=127"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/theextremewebdesigns.com\/blog\/wp-json\/wp\/v2\/categories?post=127"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/theextremewebdesigns.com\/blog\/wp-json\/wp\/v2\/tags?post=127"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}