register_post_type(‘noticias’, [
‘label’ => ‘Notícias’,
‘public’ => true,
‘show_in_rest’ => true,
‘template’ => [
[‘core/heading’, [‘placeholder’ => ‘Título da notícia’]],
[‘core/paragraph’, [‘placeholder’ => ‘Resumo’]],
[‘core/image’],
[‘core/paragraph’, [‘placeholder’ => ‘Texto da notícia’]],
],
‘template_lock’ => ‘all’
]);



