Skip to content

Instantly share code, notes, and snippets.

@JacobDB
Last active July 23, 2024 10:28
Show Gist options
  • Save JacobDB/130eb6e3a148c1cfff301daccc3958ad to your computer and use it in GitHub Desktop.
Save JacobDB/130eb6e3a148c1cfff301daccc3958ad to your computer and use it in GitHub Desktop.
Download and install ACF Pro via a bash script – to be used with WP CLI. Set an environemnt variable ACF_KEY first!
#!/bin/sh
# Adapted from https://support.advancedcustomfields.com/forums/topic/download-acf-with-wp-cli-on-clean-install/#post-26191
# get plugin path
acf_zip_file="$(wp plugin path)/advanced-custom-fields-pro.zip"
# get acf zip file
wget -O ${acf_zip_file} "https://connect.advancedcustomfields.com/v2/plugins/download?p=pro&k=$ACF_KEY"
# install & activate acf
wp plugin install ${acf_zip_file} --activate
# remove zip file
rm ${acf_zip_file}
@JacobDB
Copy link
Author

JacobDB commented Jul 22, 2024

@BidmarkBM sorry for the late response, but I've updated the script, URL just needed changing.

@BidmarkBM
Copy link

@BidmarkBM sorry for the late response, but I've updated the script, URL just needed changing.

Brilliant, thanks - much appreciated!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment