
Add Customize Logo on Wordpress
- First log onto your wordpress account-->go to Dashboard => Appearance =>
- Then select Editor => Functions.php
- Paste the following code in your functions theme file and save it.
unction my_custom_login_logo() {
echo '<style type="text/css">
h1 a { background-image:url(your logo image url) !important; }
</style>';
}
add_action('login_head', 'my_custom_login_logo');
|
Articles You May Like |
Wow, this would really be better to have a personalized login screen.
ReplyDeleteYes.I guess so :)
DeleteThis would also make you feel you own the blogsite.
ReplyDeleteYes that's true :)
Delete