register_post_meta( 'post_type_name', 'test_posts', array(
'type' => 'array',
'default' => array(),
'single' => true,
'show_in_rest' => array(
'schema' => array(
'type' => 'array',
'items' => array(
'type' => 'number'
)
)
),
) );
import {
TwebMetaPostTypeMultipleControl,
} from '@tigriweb/components/meta';
<TwebMetaPostTypeMultipleControl
label={ __('Posts Label', 'your-theme-name') }
help={ __('Posts Description', 'your-theme-name') }
postType="post"
metaKey="test_posts"
/>