/ Published in: PHP
Once we login and are in the backend of WordPress, there is another small logo of WordPress displayed on top. It’s small but if you wish to change it, then add below code to the same functions.php file we created in above step.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
// CUSTOM ADMIN DASHBOARD HEADER LOGO function custom_admin_logo() { echo '<style type="text/css">#header-logo { background-image: url('.get_bloginfo('template_directory').'/images/logo_admin_dashboard.png) !important; }</style>'; } add_action('admin_head', 'custom_admin_logo');