function add_custom_type_post_theme()
{
register_post_type('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' => 'Услуги',
],
'public' => true,
'menu_position' => 4,
'hierarchical' => true,
'menu_icon' => 'dashicons-format-aside',
'supports' => ['title', 'editor', 'thumbnail'],
]);