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
<link rel="shortcut icon" sizes="16x16 24x24 32x32 48x48 64x64" href="https://scotch.io/favicon.ico"> | |
<link rel="apple-touch-icon" sizes="57x57" href="/wp-content/themes/thirty/img/icons/favicon-57.png"> | |
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="/wp-content/themes/thirty/img/icons/favicon-57.png"> | |
<link rel="apple-touch-icon" sizes="72x72" href="/wp-content/themes/thirty/img/icons/favicon-72.png"> | |
<link rel="apple-touch-icon" sizes="114x114" href="/wp-content/themes/thirty/img/icons/favicon-114.png"> | |
<link rel="apple-touch-icon" sizes="120x120" href="/wp-content/themes/thirty/img/icons/favicon-120.png"> | |
<link rel="apple-touch-icon" sizes="144x144" href="/wp-content/themes/thirty/img/icons/favicon-144.png"> | |
<link rel="apple-touch-icon" sizes="152x152" href="/wp-content/themes/thirty/img/icons/favicon-152.png"> | |
<meta name="application-name" content="Scotch Scotch scotch"> | |
<meta name="msapplication-TileImage" content="/wp-content/themes/thirty/img/icons/favicon-144.png"> |
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
function themeName_file_icon($variables) { | |
$file = $variables['file']; | |
$icon_directory = $variables['icon_directory']; | |
$mime = check_plain($file->filemime); | |
if ($mime == 'application/vnd.ms-excel') { | |
$icon_directory = path_to_theme() . '/images'; | |
} | |
$icon_url = file_icon_url($file, $icon_directory); | |
return '<img class="file-icon" alt="" title="' . $mime . '" src="' . $icon_url . '" />'; |