开发者

Adding a logo in site's header

开发者 https://www.devze.com 2023-02-05 13:56 出处:网络
I would like to add a logo on my site header. Currently, on Go开发者_JAVA技巧ogle 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 head

I would like to add a logo on my site header. Currently, on Go开发者_JAVA技巧ogle 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>


this will do, <link href = "images/icon.gif" rel="icon" type="image/gif">


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.


you could add the following code in the head section

<head>
    <link rel="shortcut icon" type="image/x-icon" href="/path to your logo">
</head>

you have to change the logo in jpg, jpeg, gif, png into ico. you can use the following link for that purpose link

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号