我把我的favicofavico.ico
在我的网站的根目录上。
将以下代码添加到wp-content/themes/f2/header.php
:
<link rel="shortcut icon" href="<?php echo get_stylesheet_directory_uri(); ?>/favicon.ico" />
然而,favicon只出现在主页上?如何使其在整个网站上有效?
<小时>EDIT: 我设置了href
如abosolute路径所示,其工作原理如下:
<link rel="shortcut icon" href="http://example.com/favicon.ico" />
最合适的回答,由SO网友:SparkAndShine 整理而成
我将href设置为abosolute路径,它可以工作,如下所示:
<link rel="shortcut icon" href="http://example.com/favicon.ico" />
或者按照@Caspar和@Howdy\\u McGee的建议,对于wordpress 4.3+,使用:
Dashboard -> Appearance -> Customize -> Site Identity -> Site Icon