-
Notifications
You must be signed in to change notification settings - Fork 8
Functions and API
Radoslav Georgiev edited this page Oct 21, 2018
·
2 revisions
Ultimate Fields comes with an extensive PHP API, which consists of various classes and functions.
If you are using the administration interface to create fields, the only article in this section that you should read is Using field values. The article explains how to retrieve the values, which have already been saved by Ultimate Fields.
If you prefer to Use the PHP API, we recommend reading the following articles in this order. Those articles are focused on coding instead of the usage of the Administration Interface.
Article | Topic | Difficulty |
---|---|---|
1. Using the PHP API | The basic concepts, used in Ultimate Fields | Easy |
2. Using field values | Retrieval the values of the fields, which you just created. At this point you should be familiar with the basic concept from creating fields to using their values. | Easy |
3. Container Settings | All settings, available for container fine-tuning | Medium |
4. Fields / Overview and Usage | Creation of fields and their properties. | Medium |
5. Locations / Overview and Usage | Creation of locations and modifying their properties. Each article in the chapter describes the specifics of individual locations. | Medium |
6. Datastores | Datastores are the link between fields and the database, which provides a lot of flexibility. | Hard |
7. Class Structure and Logic | This article explains the internal mechanism of Ultimate Fields and is only recommended for experienced developers. | Hard |
Once done, you will be fully accustomed to the full functionality of Ultimate Fields.
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