wpseek.com
A WordPress-centric search engine for devs and theme authors
wp_create_initial_comment_meta › WordPress Function
Since6.9.0
Deprecatedn/a
› wp_create_initial_comment_meta ( No parameters )
| Defined at: |
|
| Codex: |
Register initial note status meta.
Source
function wp_create_initial_comment_meta() {
register_meta(
'comment',
'_wp_note_status',
array(
'type' => 'string',
'description' => __( 'Note resolution status' ),
'single' => true,
'show_in_rest' => array(
'schema' => array(
'type' => 'string',
'enum' => array( 'resolved', 'reopen' ),
),
),
'auth_callback' => function ( $allowed, $meta_key, $object_id ) {
return current_user_can( 'edit_comment', $object_id );
},
)
);
}