-
AuthorPosts
-
March 29, 2015 at 3:00 am #419945
Hi there,
I would like to add a favicon to the WordPress Admin area. How can this be done? I have tried other guides that said to edit functions.php, but I haven’t had any luck. It seems like this should just take a few lines of code :(
Thanks!
March 30, 2015 at 6:29 pm #420695Hey djgranth!
You mean your trying to add a favicon for your site? You can do this in Dashboard > Enfold > Theme Options. There is an area to upload your favicon right beneath the logo option.
Cheers!
ElliottMarch 31, 2015 at 1:34 am #420913Hi there!
Oh no, I mean in the back-end. As in the WordPress Dashboard/Admin area. I’ve tried many things that are similar to the guide detailed at: http://wordpress.stackexchange.com/questions/138098/how-to-add-favicon-to-my-site-in-both-front-end-and-admin-panel
I haven’t had any luck yet. I hope you can help :)
March 31, 2015 at 5:27 pm #421366Hey!
Please see – https://codex.wordpress.org/Customizing_the_Login_Form
You can also try using this plugin – https://wordpress.org/plugins/wp-login-logo-changer-by-ahmad-awais/ or similarCheers!
YigitMarch 31, 2015 at 7:10 pm #421470Hi Yigit,
While those links are great, and I’ll use them to change the login logo, what I’m actually looking for is to add a favicon to the WordPress Dashboard area. The area you get to after you login, not the area itsself. It seems simple, but nothing will work.
This link shows what I’m trying to do: http://www.trickspanda.com/2014/01/add-favicon-wordpress-admin-panel/
Thanks,
-DallasMarch 31, 2015 at 7:16 pm #421479I take that back, I played around with that last link and was able to get it to work! It just needed a direct path to my ico file. Thanks for all the help!
March 31, 2015 at 7:17 pm #421481Hey!
Now understood. Please add following code to Functions.php file in Appearance > Editor
function add_login_favicon() { $favicon_url = 'http://kriesi.at/wp-content/themes/kriesi/images/logo.png'; echo '<link rel="shortcut icon" href="' . $favicon_url . '" />'; } add_action('login_head', 'add_login_favicon'); add_action('admin_head', 'add_login_favicon');
Best regards,
Yigit -
AuthorPosts
- You must be logged in to reply to this topic.