Last active
August 22, 2016 16:09
-
-
Save thierrypigot/3e4e3983739a2dc3a2de1a7062f53d1f to your computer and use it in GitHub Desktop.
Bookmark to go in the WordPress Admin. Add a new Bookmark and copy this in the URL field ;)
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
javascript:( function(){ with(window.open('http://'+window.location.host+'/wp-admin','_blank')){ document.close(); } })() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To open in new window
javascript:(function(){window.open('http://'+location.hostname+'/wp-admin')})();
To open in same window
javascript:(function(){window.location='http://'+location.hostname+'/wp-admin';})();