/ Published in: PHP
URL: http://scottnix.com/code/wordpress/thematic-snippets/
Loads a favicon to WordPress, must be a .ico format 16x16
Expand |
Embed | Plain Text
// add favicon to site, add 16x16 "favicon.ico" image to main directory function snix_add_favicon() { ?> <link rel="shortcut icon" href="<?php bloginfo('stylesheet_directory'); ?>/favicon.ico" /> <?php } add_action('wp_head', 'snix_add_favicon');
You need to login to post a comment.
