Skip to content

Instantly share code, notes, and snippets.

@micjamking
Created December 28, 2015 22:04
Show Gist options
  • Save micjamking/004e4bcc5f940d548385 to your computer and use it in GitHub Desktop.
Save micjamking/004e4bcc5f940d548385 to your computer and use it in GitHub Desktop.
Set WordPress permissions for localhost installations
#!/bin/bash
# Set WordPress permissions for localhost installations
# @param {string} $1 - directory to apply permission settings
# @example - $ wp_permissions wordpress/
function wp_permissions() {
sudo chown -R :_www "$1" && sudo chmod -R g+w "$1"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment