如何让我的网站图标显示在 WordPress 自定义主题中?
How do I get my Favicon to show in WordPress custom theme?
我正在尝试在 WordPress header 中显示一个网站图标,但它对我不起作用 - 您认为会出现什么问题?
我正在使用 Twig/Timber 进行开发。
<link rel="shortcut icon" type="image/x-icon" href="{{options.header.favicon.url | default(site.theme.link ~ '/images/favicon.ico')}}"/>
检查一切正常:
<link rel="stylesheet" href="http://protoolsite.local/wp-content/themes/protool-theme/style.css" type="text/css" media="screen"/>
<link rel="shortcut icon" type="image/x-icon" href="http://protoolsite.local/wp-content/themes/protool-theme/images/favicon.ico"/>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="author" href="http://protoolsite.local/wp-content/themes/protool-theme/humans.txt"/>
当我检查这个 link 时,它完全没有问题:http://protoolsite.local/wp-content/themes/protool-theme/images/favicon.ico
它只是一直显示 wordpress“W”图标。
很确定 Wordpress 也需要“图标”。
<link rel="icon" type="image/x-icon" href="http://protoolsite.local/wp-content/themes/protool-theme/images/favicon.ico"/>
不过在 Wordpress 中转到 appearance
> customise
> site identity
会更容易。
我正在尝试在 WordPress header 中显示一个网站图标,但它对我不起作用 - 您认为会出现什么问题?
我正在使用 Twig/Timber 进行开发。
<link rel="shortcut icon" type="image/x-icon" href="{{options.header.favicon.url | default(site.theme.link ~ '/images/favicon.ico')}}"/>
检查一切正常:
<link rel="stylesheet" href="http://protoolsite.local/wp-content/themes/protool-theme/style.css" type="text/css" media="screen"/>
<link rel="shortcut icon" type="image/x-icon" href="http://protoolsite.local/wp-content/themes/protool-theme/images/favicon.ico"/>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="author" href="http://protoolsite.local/wp-content/themes/protool-theme/humans.txt"/>
当我检查这个 link 时,它完全没有问题:http://protoolsite.local/wp-content/themes/protool-theme/images/favicon.ico
它只是一直显示 wordpress“W”图标。
很确定 Wordpress 也需要“图标”。
<link rel="icon" type="image/x-icon" href="http://protoolsite.local/wp-content/themes/protool-theme/images/favicon.ico"/>
不过在 Wordpress 中转到 appearance
> customise
> site identity
会更容易。