Installation

Docs Getting Started Installation

#ACF ExtendedFREE

  1. Download the plugin from here, or the WordPress repository
  2. Upload acf-extended folder to the /wp-content/plugins/ directory
  3. Activate the plugin through the “Plugins” menu in WordPress
ACF Extended
Howdy, ACF Extended
Add PluginsUpload Plugin
ACF Extended
All-in-one enhancement suite that improves WordPress.
By ACF Extended
More Details
90,000+ Active Installations
Last Updated: 1 month ago
Compatible with your version
ACF
Customize WordPress with powerful fields.
By WP Engine
More Details
2+ Million Active Installations
Last Updated: 1 month ago
Compatible with your version
  1. Log in to your WP Admin
  2. Head over the “Plugins > Add New” admin menu
  3. Search for “ACF Extended”
  4. Click the “Install Now” button on the ACF Extended plugin

This 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 ExtendedPRO

  1. Download the plugin from here, or your Account Dashboard
  2. Upload acf-extended-pro folder to the /wp-content/plugins/ directory
  3. Activate the plugin through the “Plugins” menu in WordPress
  4. Remove ACF Extended Free, if it was previously installed

This 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": "*"
},