I would like to add a logo on my site header. Currently, on Google Chrome, it is a blank white paper. How would I go about doing so? Here is the current HTML I am using for my site header. Any help would be much appreciated.
<title>
<?php if ( is_home() ) { ?> <?php } ?>
<?php echo ucwords(wp_title('',true)); ?> <?php echo ucwords(get_bloginfo('name')); ?>
</title>
I'm assuming you want to add a favicon. You can't put it in the <title>
. This useful tool should help with generating an appropriate icon and give you the correct code to embed it in your site and instructions on where to add it.