在网站标题中添加徽标
我想在我的网站标题上添加徽标。目前,在 Google Chrome 上,它是一张空白的白皮书。我该怎么做呢?这是我当前用于网站标题的 HTML。任何帮助将不胜感激。
<title>
<?php if ( is_home() ) { ?> <?php } ?>
<?php echo ucwords(wp_title('',true)); ?> <?php echo ucwords(get_bloginfo('name')); ?>
</title>
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>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以在 head 部分添加以下代码,
您必须将 jpg、jpeg、gif、png 中的徽标更改为 ico。你可以使用
为此目的使用以下链接
链接
you could add the following code in the head section
you have to change the logo in jpg, jpeg, gif, png into ico. you can use the
following link for that purpose
link
我假设您想添加一个 favicon。您不能将其放在</code> 中。 <a href="http://tools.dynamicdrive.com/favicon/" rel="nofollow">这个有用的工具</a>应该有助于生成适当的图标,并为您提供正确的代码以将其嵌入到您的网站中以及添加位置的说明。
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.这样就可以了
<代码>
<link href = "images/icon.gif" rel="icon" type="image/gif">
this will do,
<link href = "images/icon.gif" rel="icon" type="image/gif">