Created
December 19, 2013 13:42
-
-
Save kedramon/8039258 to your computer and use it in GitHub Desktop.
Drupal 7.
Add apple-touch-icon.png in your theme folder
I use 120x120 image size
This file contains 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 YOUR_THEME_NAME_preprocess_html(&$vars) { | |
$apple = array( | |
'#tag' => 'link', | |
'#attributes' => array( | |
'href' => base_path() . path_to_theme() .'/apple-touch-icon.png', | |
'rel' => 'apple-touch-icon', | |
'sizes' => '120x120' | |
), | |
); | |
drupal_add_html_head($apple, 'apple-touch-icon'); | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment