Enterprise CPT
Enterprise CPT is a JSON-first plugin for managing Custom Post Types and Field Groups with a modern WordPress admin UI and performance-focused storage options.
★ 0stars
5release downloads
0forks
Install
The author publishes release zips, so WP-CLI can install straight from GitHub:
wp plugin install https://github.com/tporret/enterprise-cpt/releases/download/v0.6.0/enterprise-cpt-v0.6.0.zipFrom the readme
Enterprise CPT
Enterprise CPT is a JSON-first WordPress plugin for defining custom post types, field groups, storage behavior, and dynamic Gutenberg blocks from version-controlled schemas.
This readme is for developers working in the repository. For plugin users and site administrators, see readme.txt.
Overview
The plugin reads two primary schema sources:
- definitions/cpt/.json for custom post types
- blocks/fields/.json for field groups and block-enabled groups
Those definitions drive:
- wp-admin CPT and field-group management screens
- post-meta registration and editor bootstrap payloads
- optional custom-table storage
- dynamic Gutenberg block registration
- shared server-side rendering for editor previews and frontend output
Current Data Model
Field groups
Supported field types:
- text
- textarea
- number
- email
- truefalse
- select
- radio
- repeater
Repeater subfields currently support:
- text
- textarea
- number
- email
- image
The canonical targeting model is locations:
Legacy posttype and locationrules inputs are still normalized at runtime for backward compatibility.
Blocks
Any field group can become a dynamic Gutenberg block by setting "isblock": true.
Read the full README on GitHub →