Wordpress:插入图标文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress:插入图标文件相关的知识,希望对你有一定的参考价值。

Insert a favicon using functions.php
  1. /**
  2. * Add a Favicon
  3. * This prevents you from having to worry about updating your theme and losing your favicon.
  4. *
  5. */
  6. function add_favicon(){
  7. echo "<link rel='shortcut icon' href='" . get_stylesheet_directory_uri() . "/favicon.ico' />" . "n";
  8. }
  9. add_action( 'wp_head', 'add_favicon');

以上是关于Wordpress:插入图标文件的主要内容,如果未能解决你的问题,请参考以下文章