Created
June 8, 2014 10:29
-
-
Save KingYes/fd822d4a635d09422414 to your computer and use it in GitHub Desktop.
WordPress Favicon
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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