Add PluginsUpload Plugin
90,000+ Active Installations
Last Updated: 1 month ago
Compatible with your version
2+ Million Active Installations
Last Updated: 1 month ago
Compatible with your version
acf-extended
folder to the /wp-content/plugins/
directoryThis solution uses the third-party WordPress Packagist library.
Add the following configuration to your composer.json
file:
"repositories":[
{
"type":"composer",
"url":"https://wpackagist.org",
"only": [
"wpackagist-plugin/*"
]
}
],
"require": {
"wpackagist-plugin/acf-extended":"dev-trunk"
},
acf-extended-pro
folder to the /wp-content/plugins/
directoryThis solution uses the third-party Composer WP Pro Plugins library.
Create a .env
file in the root of your WordPress site, where the composer.json
file lives, append your ACF Extended Pro license key and the website to activate:
ACFE_PRO_KEY="YOUR_LICENSE_KEY"
ACFE_PRO_URL="https://www.your-website.com"
Add the following configuration to your composer.json
file. Note that you can retrieve a specific version number using the version
parameter.
"repositories": [
{
"type": "package",
"package": {
"name": "junaidbhura/acf-extended-pro",
"version": "<version_number>",
"type": "wordpress-plugin",
"dist": {
"type": "zip",
"url": "https://www.acf-extended.com/"
},
"require": {
"junaidbhura/composer-wp-pro-plugins": "*"
}
}
}
],
"require": {
"junaidbhura/acf-extended-pro": "*"
},