Skip to content

Instantly share code, notes, and snippets.

@KingYes
Created June 8, 2014 10:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KingYes/fd822d4a635d09422414 to your computer and use it in GitHub Desktop.
Save KingYes/fd822d4a635d09422414 to your computer and use it in GitHub Desktop.
WordPress Favicon
<?php
function pojo1029_show_favicon() {
?>
<link rel="apple-touch-icon" sizes="57x57" href="http://www.example.com/apple_touch_icon_iphone.png" />
<link rel="apple-touch-icon" sizes="72x72" href="http://www.example.com/apple_touch_icon_ipad.png" />
<link rel="apple-touch-icon" sizes="114x114" href="http://www.example.com/apple_touch_icon_iphone_retina.png" />
<link rel="apple-touch-icon" sizes="144x144" href="http://www.example.com/apple_touch_icon_ipad_retina.png" />
<?php
}
add_action( 'wp_head', 'pojo1029_show_favicon' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment