Registra um CPT completo com suporte a REST API, ícone e rewrite de URL.
add_action('init', function () {
register_post_type('projeto', [
'labels' => [
'name' => 'Projetos',
'singular_name' => 'Projeto',
'add_new_item' => 'Novo Projeto',
'edit_item' => 'Editar Projeto',
],
'public' => true,
'show_in_rest' => true,
'menu_icon' => 'dashicons-portfolio',
'supports' => ['title', 'editor', 'thumbnail', 'excerpt'],
'rewrite' => ['slug' => 'projetos'],
'has_archive' => true,
]);
});