25 lines
568 B
PHP
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');
|