1. Go to your wp-content/themes/(your theme)/functions.php
2. Now add this code to your functions.php file
function my_custom_login_logo() {
echo '';
}add_action(‘login_head’, ‘my_custom_login_logo’);
3. Make A new logo named “custom-login-logo.gif”(Make sure that your logo is in .GIF format) which you want to replace with the WordPress logo and upload it to your wp-content/themes/(your theme)/images/
4. Done!
1. Make A new logo for the Dashboard named “wp-logo.gif”(Make sure that your logo is in .GIF format). Its width should me 30px and height 31px.
2. Upload your logo to wp-content/themes/(your theme)/images
3. Now add this code to your ‘functions.php’ file, located in wp-content/themes/(your theme)/
add_action('admin_head', 'agentwp_dashboard_logo');
function agentwp_dashboard_logo() {
echo;
}
4. Done!











