我想在我的网站标题上添加一个徽标。目前,在谷歌浏览器上,它是一张空白的白皮书。我该怎么做呢?这是我用于网站标题的当前 HTML。任何帮助将非常感激。
<title>
<?php if ( is_home() ) { ?> <?php } ?>
<?php echo ucwords(wp_title('',true)); ?> <?php echo ucwords(get_bloginfo('name')); ?>
</title>
我想在我的网站标题上添加一个徽标。目前,在谷歌浏览器上,它是一张空白的白皮书。我该怎么做呢?这是我用于网站标题的当前 HTML。任何帮助将非常感激。
<title>
<?php if ( is_home() ) { ?> <?php } ?>
<?php echo ucwords(wp_title('',true)); ?> <?php echo ucwords(get_bloginfo('name')); ?>
</title>
这会做,
<link href = "images/icon.gif" rel="icon" type="image/gif">
您可以在 head 部分添加以下代码
<head>
<link rel="shortcut icon" type="image/x-icon" href="/path to your logo">
</head>
您必须将 jpg、jpeg、gif、png 中的徽标更改为 ico。您可以为此目的使用以下链接 链接