/ Published in: PHP
Replace the default WordPress “W” logo in the administrative header with a custom one. Add this code inside the theme’s “functions.php” file.
Expand |
Embed | Plain Text
//hook the administrative header output add_action('admin_head', 'my_custom_logo'); function my_custom_logo() { echo ' <style type="text/css"> #header-logo { background-image: url('.get_bloginfo('template_directory').'/images/custom-logo.gif) !important; } </style> '; }
You need to login to post a comment.
