Skip to content

Instantly share code, notes, and snippets.

@jlittlejohn
Last active May 2, 2019 05:03
Show Gist options
  • Save jlittlejohn/8ea002ce3555e2d63c64 to your computer and use it in GitHub Desktop.
Save jlittlejohn/8ea002ce3555e2d63c64 to your computer and use it in GitHub Desktop.
WP: Add Favicon Function
function add_favicon() {
$favicon_url = site_url() . '/favicon.png';
echo '<rel="icon" type="image/png" href="' . $favicon_url . '"/>';
}
add_action('login_head', 'add_favicon');
add_action('admin_head', 'add_favicon');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment