add_action('init', 'register_post_types');
function register_post_types()
{
register_post_type('services', [
'label' => 'services',
'labels' => [
'name' => 'Услуги',
'singular_name' => 'Услуга',
'add_new' => 'Добавить услугу',
'add_new_item' => 'Добавление услуги',
'edit_item' => 'Редактирование услуги',
'new_item' => 'Новая услуга',
'view_item' => 'Смотреть услугу',
'search_items' => 'Искать услугу',
'not_found' => 'Не найдено',
'not_found_in_trash' => 'Не найдено в корзине',
'parent_item_colon' => '',
'menu_name' => 'Список услуг',
],
'description' => '',
'public' => true,
// 'publicly_queryable' => null,
// 'exclude_from_search' => null,
// 'show_ui' => null,
// 'show_in_nav_menus' => null,
'show_in_menu' => true,
// 'show_in_admin_bar' => null,
'show_in_rest' => null,
'rest_base' => null,
'menu_position' => null,
'menu_icon' => null,
//'capability_type' => 'post',
//'capabilities' => 'post',
//'map_meta_cap' => null,
'hierarchical' => false,
'supports' => ['title', 'custom-fields', 'page-attributes'], // 'title','editor','author','thumbnail','excerpt','trackbacks','custom-fields','comments','revisions','page-attributes','post-formats'
'taxonomies' => [],
'has_archive' => false,
'rewrite' => array('slug' => '/', 'with_front' => false),
'query_var' => true,
]);
}
Заказчику вобщем-то эти подробности не важны (а по структуре url - требование seo-специалиста), он пришел с проблемой сломавшегося сайта после другого специалиста. Так что, думаю, возражений не будет.