Last active
October 27, 2022 17:51
-
-
Save josephfusco/54111cad1cdcb3c4a0ce27fb890f3b74 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
#!/usr/bin/env bash | |
# Exit if WP-CLI is not available. | |
if ! command -v wp &> /dev/null | |
then | |
echo "This script requires WP-CLI" | |
exit | |
fi | |
# Install WordPress plugins. | |
wp plugin install atlas-content-modeler --activate | |
wp plugin install wordpress-importer --activate | |
# Modify plugin data. | |
wp acm reset |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment