This is a core proposal for a new wide-reaching API for WordPress core. It is currently an evolving prototype that can be installed as a plugin for easy testing and usage throughout development.
This was initially a project of the WordPress core Options/Metadata team but is currently led by Scott Kingsley Clark with oversight by WordPress core lead developer Helen Hou-SandĂ.
Please note: This plugin is still in the early stages of development and should not be used on production sites. It should be assumed that until the v1.0 release, the Fields API could change significantly due to core scrutiny and the final merge proposal response.
- Posts about the WP Fields API on the Official WordPress.org Development blog
- Architecture Documentation
- Terminology
- Object Types and Object Subtypes
- Registering Fields (in depth)
- Creating an Implementation (advanced)
User Profile Form:
Term Add / Edit Form:
- WordPress 4.4 - No previous or more recent major version can be 100% supported and confirmed as working.
- Fields API installed as a plugin
Every Fields API release has to be based off of the latest WordPress stable release. This means that over time, we can only support the last stable release of WordPress.
At the end of each WP release cycle we have to merge all of the Customizer and other implementations we have with the latest changes from core.
There are over a hundred (I had to stop counting) plugins in the plugin repository that add meta boxes and fields to post types, settings, users, and even more if you include all of the themes and plugins that hook into the customizer. Many plugins build their own abstraction level for doing this, and custom field plugins are the biggest culprit of not following any standards for which to there is a significant need to unite these APIs to make them more consistent. At the same time, being able to provide a detailed structure for a site will take the capabilities of apps that extend WordPress (or interact with it) to the next level.
Each of the APIs that this aims to unite all have the same essential needs. Based on the Customizer, we can enable developers to do more because they won't have to jump between different interfaces.
I am not focusing on any UI aspects at the moment besides implementation of the API underneath getting the field data for UI to use in core itself. It will be easier to tackle the API and the UI separately for both the purpose of development and core inclusion.
There are still a lot of areas the API is not represented in code or in examples.
Check out a full list of things we currently need help with
- Implementations are in development amongst a few contributors
- We need use-cases and examples, to be fleshed out in
/examples/{implementation}/{example}.md
inside this repo - Core Proposal for Merge into WP 4.6 needs to be written up
If you are interested in contributing, feel free to contact us in #core-fields on WordPress Slack and we'll help you get into the mix.
There are also GitHub issues you can feel free to chime in on or provide Pull Requests to.
To submit a pull request, please base it off of the develop
branch which we use for ongoing development towards the next release. The master
branch represents the last stable beta release.
There are a few things that can be enabled for testing purposes:
define( 'WP_FIELDS_API_EXAMPLES', true );
Enable example section, controls, and fields for each form.define( 'WP_FIELDS_API_TESTING', true );
Enable Fields API testing, as used by below.?fields-api-memory-test=1
Enable memory testing of 25 example sections, set to any number greater than 1 to customize how many example sections to add. Requires WP_FIELDS_API_TESTING on?no-fields-api=1
Disable Fields API from loading, useful for memory split testing. Requires WP_FIELDS_API_TESTING to be turned on?no-fields-api-late-init=1
Disable Fields API Late Init, which means when any form, section, control, or field are added, the object will be setup right away instead of only as needed by current page. Useful for memory split testing. Requires WP_FIELDS_API_TESTING to be turned on
There are also a few other related plugins that may come in handy:
- WP Fields Admin UI plugin: Build and demo how the Fields API works with an easy to use administration interface that actually lets you create new Fields API configurations.
- WP Fields API Debug Bar plugin: See details on how many forms, sections, controls, fields, and other stats about your current Fields API configuration.
GPLv2 or later. See License.