From 0c5cb9b3908328602659e82aebdaefda0fc8c992 Mon Sep 17 00:00:00 2001 From: real_nowhereman Date: Wed, 1 Sep 2010 18:09:37 +0000 Subject: [PATCH] the favicon image MUST be named "favicon.ico"... --- fp-plugins/favicon/plugin.favicon.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/fp-plugins/favicon/plugin.favicon.php b/fp-plugins/favicon/plugin.favicon.php index abc5274..6e949d7 100755 --- a/fp-plugins/favicon/plugin.favicon.php +++ b/fp-plugins/favicon/plugin.favicon.php @@ -9,10 +9,11 @@ Author URI: http://www.nowhereland.it/ */ function plugin_favicon_head() { - // your file *must* be named favicon.ext, - // where ext is an image extension (such as gif, png, ico...) + // your file *must* be named favicon.ico + // and be a ICO file (not a renamed png, jpg, gif, etc...) + // or it won't work in IE echo ''; + plugin_geturl('favicon') .'imgs/favicon.ico" />'; } add_action('wp_head', 'plugin_favicon_head');