Skip to content

Instantly share code, notes, and snippets.

@kedramon
Created December 19, 2013 13:42
Show Gist options
  • Save kedramon/8039258 to your computer and use it in GitHub Desktop.
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
<?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