Wordpress:插入图标文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress:插入图标文件相关的知识,希望对你有一定的参考价值。
Insert a favicon using functions.php
/** * Add a Favicon * This prevents you from having to worry about updating your theme and losing your favicon. * */ function add_favicon(){ echo "<link rel='shortcut icon' href='" . get_stylesheet_directory_uri() . "/favicon.ico' />" . "n"; } add_action( 'wp_head', 'add_favicon');
以上是关于Wordpress:插入图标文件的主要内容,如果未能解决你的问题,请参考以下文章
Wordpress - 将代码片段包含到布局的选定部分的插件
将变量从 WordPress PHP 传递到 JavaScript