ceinture-culturelle/includes/post-type.php
2024-11-22 16:02:01 +01:00

25 lines
568 B
PHP

<?php
function create_posttype()
{
// **** Evenements
register_post_type(
'evenements',
array(
'labels' => array(
'name' => __('Evénements', 'deligraph__texte-backoffice'),
'singular_name' => __('Evénement', 'deligraph__texte-backoffice')
),
'public' => true,
'has_archive' => false,
'show_in_rest' => true,
'menu_icon' => 'dashicons-pressthis',
'menu_position' => 2,
'supports' => array('title', 'custom-fields', 'page-attributes', 'thumbnail', 'revisions', 'excerpt'),
)
);
}
add_action('init', 'create_posttype');