Skip to content

Instantly share code, notes, and snippets.

@adamlaki
Created June 30, 2018 16:24
Show Gist options
  • Save adamlaki/eeadef0e0d66c63a34cec33ed36c3d9f to your computer and use it in GitHub Desktop.
Save adamlaki/eeadef0e0d66c63a34cec33ed36c3d9f to your computer and use it in GitHub Desktop.
Add Favicon to Your WordPress Admin and Login
<?php
function add_favicon() {
$favicon_url = get_stylesheet_directory_uri() . '/assets/images/favicon/favicon-16x16.png';
echo '<link rel="shortcut icon" 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