Functions

The full list of PHP functions

ACPT exposes a complete set of PHP functions to manage custom post types and meta fields.

Use this list for quick reference:

Custom post types

Taxonomies

Option pages

Forms

Fields

Manage field values

IMPORTANT NOTE: Every function is capable of working with parameters both in camel case and snake case.

Quick example:

get_acpt_form_field_object([
    'formName' => 'new-form', // works also with 'form_name'
    'fieldName' => 'email',   // works also with 'field_name'
]);

Last updated