Skip to content

Instantly share code, notes, and snippets.

@ajithrn
Last active August 29, 2015 14:03
Show Gist options
  • Save ajithrn/217afb4673186d07e0ec to your computer and use it in GitHub Desktop.
Save ajithrn/217afb4673186d07e0ec to your computer and use it in GitHub Desktop.
Wordpress: custom favicon
/**
** Function to add custom favicon in wordpress blog
**/
function add_favicon() {
$favicon_path = get_template_directory_uri() . '/assets/img/favicon.ico';
echo '<link rel="shortcut icon" href="' . $favicon_path . '" />';
}
add_action( 'wp_head', 'add_favicon' ); //front end
add_action( 'admin_head', 'add_favicon' ); //admin end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment