Last active
February 19, 2021 20:45
-
-
Save kjohnson/407db514c4f3b8a72c4c9c9f79fcd081 to your computer and use it in GitHub Desktop.
This file contains 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
function wordpress() { | |
cd ~/WordPress | |
} | |
function wpdebug() { | |
pwd=$PWD | |
cd ~/WordPress | |
wp config set WP_DEBUG $1 --raw | |
cd "$pwd" | |
} | |
function plug() { | |
ln -s "$PWD/$1" "/home/kylejohnson/WordPress/wp-content/plugins/$1" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment