Categories: Tips & Tricks

Adding a favicon to your site

Looking to add a favicon to you site?

Inside your WordPress theme’s functions file (functions.php) add the following to inside your PHP code.

/**
 * FAVICON
 * @WPCult.com
 */function my_favicon() { ?>
 <link rel="shortcut icon" href="<?php echo bloginfo("stylesheet_directory") ?>'/images/favicon.ico" />
<?php }

add_action('wp_head', 'my_favicon');

That’s it, just be sure to upload an icon image or a .gif/.png. Be sure to correct the target location id the file is located somewhere else.

Web Master

Hi, I am Miguel, I bought this site in 2009. So I now run or manage the site. Please visit my new website or follow me on twitter @W3i.

Recent Posts

Contest: WP e-Commerce theme competition

The WordPress e-Commerce team are gearing up to announce a competition for the best WordPress…

2 hours ago

Arthemia Premuim

Arthemia Premium is a magazine style theme that unleashes the power of Wordpress, transforming it…

14 hours ago

Revolution Two: Album theme

Benefits include the Album theme, unlimited theme support answered by our experts, customization techniques with…

2 days ago

Search Unleased: A custom WordPress plugin

Most all WordPress theme's use a a simple search form to search your site. But…

2 days ago

Limit the characters that display on the_title

Ever wanted to display the title of a post somewhere but limit the amount of…

3 days ago