Created
June 30, 2018 16:24
-
-
Save adamlaki/eeadef0e0d66c63a34cec33ed36c3d9f to your computer and use it in GitHub Desktop.
Add Favicon to Your WordPress Admin and Login
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
<?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