I’ve been working with wordpress a lot recently and one morning it occurred to me that I was typing wp-admin in my address bar about 50 times a days. After a few minutes of reflexion i wrote a little bookmarklet to do it for me.
Now I just click on the bookmark and it opens the admin login in a new window, for any wordpress site I am on. It’s a very simple function and you need to be on the root of the wordpress blog to get it to work but I think it saves a bit of time when open and close admin pages all day long.
Here is the link to drag to your bookmark bar: Admin
And here is the javascript function:
<a href="javascript: function openAdmin()
{
window.open(document.location+’/wp-admin’);
}
openAdmin();
">Admin</a>
{
window.open(document.location+’/wp-admin’);
}
openAdmin();
">Admin</a>
If that helps anyone other than me…
Related Items and Services:Typing Services and Secretarial Services.












That’s good thinking there!
Seems to work well in most browsers. If you aren’t logged on it will just show you the login screen.
Thanks!