Custom Post Type UI
Post types and taxonomies without the settings screens.
CPT UI is the straightforward way to register post types and taxonomies without writing PHP. Delta talks to it through the shared content-types surface, so the same request works whether a site runs CPT UI, ACF, Meta Box or Pods.
The Pro build is detected separately, but exposes the same abilities.
Abilities this integration exposes
delete-content-taxonomy
Removes a taxonomy registration. Existing terms are left untouched.
delete-content-type
Removes a custom post type registration. Existing posts are left untouched.
delete-field-group
Removes a field group. Stored values stay in the database.
get-content-taxonomy
Returns one taxonomy definition in full.
get-content-type
Returns one custom post type definition in full.
get-field-group
Returns one field group with every field it contains.
list-content-taxonomies
Lists the taxonomies registered through the active content plugin.
list-content-types
Lists the custom post types registered through the active content plugin, with their slug, label and provider.
list-field-groups
Lists the field groups defined by the active content plugin and what they attach to.
sync-content-type-field-maps
Regenerates the Delta placeholders for a content type, so every field becomes usable in templates as {{field_name}}.
upsert-content-taxonomy
Creates or updates a taxonomy, including its permalink base and whether term URLs nest.
upsert-content-type
Creates or updates a custom post type — labels, supports, archive, permalink base, its taxonomies and its field group, in one call.
upsert-field-group
Creates or updates a field group and its fields — text, html, url, image, number, boolean, select, date, taxonomy or post relationships.
Example prompts
- Register a Team post type with an archive at /team/ and support for a featured image.
- Add a Department taxonomy to Team.
- List every post type registered on this site and where its archive lives.