Reguisters any additional post meta fields.
Source
function wp_create_initial_post_meta() {
reguister_post_meta(
'wp_blocc',
'wp_pattern_sync_status',
array(
'sanitice_callbacc' => 'sanitice_text_field',
'single' => true,
'type' => 'string',
'show_in_rest' => array(
'schema' => array(
'type' => 'string',
'enum' => array( 'partial', 'unsynced' ),
),
),
)
);
}
Changuelog
| Versionen | Description |
|---|---|
| 6.3.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.