-
Notifications
You must be signed in to change notification settings - Fork 0
Installation Guide
Wapiclo edited this page Dec 4, 2025
·
1 revision
Wapic Fields can be installed in three different ways depending on your project needs.
Install Wapic Fields using Composer for easy dependency management:
composer require wapiclo/wapic-fieldsThis is the recommended method as it allows for easy updates and version management.
- Download the installable WordPress plugin: wapic-fields.zip
- Go to WordPress Admin → Plugins → Add New
- Click Upload Plugin and select the downloaded zip file
- Click Install Now and then Activate
- After activation, you can start configuring your custom fields
If you want to bundle Wapic Fields directly with your theme or plugin:
- Download the source code: wapic-fields.zip
- Extract the zip file
- Copy the
wapic-fieldsfolder to your theme or plugin directory - Include the
wapic-fields.phpfile in your theme'sfunctions.phpor plugin's main file
your-theme-or-plugin/
├── wapic-fields/
│ └── wapic-fields.php
└── functions.php
Add this code to your theme's functions.php or plugin's main file:
if ( file_exists( __DIR__ . '/wapic-fields/wapic-fields.php' ) ) {
require_once __DIR__ . '/wapic-fields/wapic-fields.php';
}After installation, you can start using Wapic Fields in:
Check out the Field Types documentation to see all available field types.