-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
The free version of Ultimate Fields is available as a WordPress.org plugin. This means that you can install Ultimate Fields as you would install any other plugin. Just look for "Ultimate Fields" and you will find it.
If you are experiencing issues while installing the plugin, please read the Managing Plugins article at WordPress.org
If you are using Composer as your dependency manager, you can also install Ultimate Fields through it. As any other WordPress plugin, Ultimate Fields is available through WordPress Packagist.
First, in your composer.json
file, make sure that you have WordPress Packagist listed as a repository:
{
"repositories":[
{
"type":"composer",
"url":"https://wpackagist.org"
}
]
]
}
Then, in the root of your project, execute the following command:
composer require wpackagist-plugin/ultimate-fields
If you have already defined that packages of the wp-plugin
type should be installed within wp-content/plugins, your job is almost done. Ultimate Fields will be installed as a standard plugin and you may go to your dashboard and activate it.
If you have included Ultimate Fields within another plugin or a theme, you will need to manually boot it like this:
<?php
require __DIR__ . '/vendor/autoload.php';
// Boot the full plugin
Ultimate_Fields\Composer::boot();
// Boot the plugin without the administration interface
Ultimate_Fields\Composer::boot( $ui = false );
Quick start
- Creating fields and using their values
- Installation
- Administration interface
- Using the PHP API
- Container Settings
Locations
- Overview & Usage
- Post Type
- Options Page
- Taxonomy
- Comment
- User
- Widget
- Shortcode
- Menu Item
- Attachment
- Customizer
Fields
- Fields
- Text
- Textarea
- WYSIWYG
- Password
- Checkbox
- Select
- Multiselect
- Image Select
- File
- Image
- Audio
- Video
- Gallery
- WP Object
- WP Objects
- Link
- Date
- DateTime
- Time
- Color
- Font
- Icon
- Map
- Embed
- Number
- Sidebar
- Complex
- Repeater
- Layout
- Section
- Tab
- Message
Features
- Adding fields to the Customizer
- Conditional Logic
- Front-End Forms
- Administration columns
- Import and Export
- REST API
- JSON Synchronization
- Yoast SEO
Ultimate Post Types
Functions and API
Tutorials