Do you know that you can change your own logo at the place of "W" WordPress Logo displayed on the top left side of the dashboard.
The first thing to do is to get your logo ready, Size might be 30*31px and the logo must be uploaded the images directory of your theme dir.
For Example, if you're using the rockstar theme from Woo theme you logo must be upload to wp-content/themes/rockstar/images.
Once done, Open your functions.php file and paste the following code in it:
If you enjoyed this Post, Please Consider Sharing It!
The first thing to do is to get your logo ready, Size might be 30*31px and the logo must be uploaded the images directory of your theme dir.
For Example, if you're using the rockstar theme from Woo theme you logo must be upload to wp-content/themes/rockstar/images.
Once done, Open your functions.php file and paste the following code in it:
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>
';
}
If you enjoyed this Post, Please Consider Sharing It!