在网站标题中添加徽标

发布于 2024-10-13 01:24:09 字数 298 浏览 2 评论 0原文

我想在我的网站标题上添加徽标。目前,在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

满栀 2024-10-20 01:24:30

您可以在 head 部分添加以下代码,

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

您必须将 jpg、jpeg、gif、png 中的徽标更改为 ico。你可以使用
为此目的使用以下链接
链接

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

隐诗 2024-10-20 01:24:21

我假设您想添加一个 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.

抱着落日 2024-10-20 01:24:16

这样就可以了
<代码>
<link href = "images/icon.gif" rel="icon" type="image/gif">

this will do,

<link href = "images/icon.gif" rel="icon" type="image/gif">

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文