apple-touch-icon.png Support (Apple iOS 'favicon')
Add support to upload an apple-touch-icon.png and insert the required code so the iOS version of a 'favicon' is utilized instead of requiring header.php edit and separate icon upload.
I like the idea, I’ll put it under review and suggest it in our talks about mobile sites. :)
2 comments
-
Simon Kelly
commented
You can add something like this to functions.php:
add_action( 'wp_head', 'woo_apple_icons', 10);
function woo_apple_icons () { ?>
<link rel="apple-touch-icon" href="<?php echo get_stylesheet_directory_uri(); ?>/assets/img/apple-touch-icon.png">
<?php } -
radmoose commented
I see that FaultPress has an apple-touch-icon by default.
Would love to see this extended to other themes, and allow us to easily change it from within the dashboard.