Replace dashboard logo with yours

Replace dashboard logo with yours

Just as a client will love to see their own logo on WordPress login page, there’s no doubt that they’ll enjoy viewing it on the dashboard too.

Simply copy the code below and paste it to your functions.php file.

add_action(‘admin_head’, ‘my_custom_logo’);

function my_custom_logo() {

echo ‘

‘;

}