Adding Post Options
Modify your post/custom post type with brand new settings
add_filter('stm_wpcfto_boxes', function ($boxes) {
$boxes['my_metabox'] = array(
'post_type' => array('post', 'my-custom-post-type'),
'label' => esc_html__('Post settings', 'my-domain'),
);
return $boxes;
});add_filter('stm_wpcfto_fields', function ($fields) {
$fields['my_metabox'] = array(
'tab_1' => array(
'name' => esc_html__('Field Settings', 'my-domain'),
'fields' => array(
'field_1' => array(
'type' => 'text',
'label' => esc_html__('Field text', 'my-domain'),
),
)
),
);
return $fields;
});Custom Fields
Last updated
Was this helpful?