// SYSTEM PANEL //
[ROOT]
/
home
/
salvufkx
/
homedir
/
public_html
/
wp-content
/
themes
/
gridsby_pro
/
inc
[ PARENT ]
EDIT :: gridsby-favicon.php
<?php /** * Favicons Hook */ function gridsby_favicon_hook() { ?> <?php if ( get_theme_mod('site_favicon') ) : ?> <link rel="shortcut icon" href="<?php echo esc_url(get_theme_mod('site_favicon')); ?>" /> <?php endif; ?> <?php if ( get_theme_mod('apple_touch_144') ) : ?> <link rel="apple-touch-icon" sizes="144x144" href="<?php echo esc_url(get_theme_mod('apple_touch_144')); ?>" /> <?php endif; ?> <?php if ( get_theme_mod('apple_touch_114') ) : ?> <link rel="apple-touch-icon" sizes="114x114" href="<?php echo esc_url(get_theme_mod('apple_touch_114')); ?>" /> <?php endif; ?> <?php if ( get_theme_mod('apple_touch_72') ) : ?> <link rel="apple-touch-icon" sizes="72x72" href="<?php echo esc_url(get_theme_mod('apple_touch_72')); ?>" /> <?php endif; ?> <?php if ( get_theme_mod('apple_touch_57') ) : ?> <link rel="apple-touch-icon" href="<?php echo esc_url(get_theme_mod('apple_touch_57')); ?>" /> <?php endif; ?> <?php } add_action('wp_head','gridsby_favicon_hook');
SAVE
CANCEL