Переименование пули моего пользовательского типа сообщений в WordPress больше не работает и сохраняет старую слизню

Я работаю над темой WordPress в течение нескольких недель, и я столкнулся со следующей проблемой: у меня есть настраиваемый тип сообщения под названием «Руководство», и я использовал переписывающий пул, чтобы изменить это на «stappenplan». Теперь я хотел бы изменить это на «приложение», но переписывание не работает. он даже не доходит до файла Archive.php, который является странным. Я использую следующий код для регистрации моего настраиваемого типа сообщений.

$guides = new \KC\ContentType('Guide', ['rewrite' => ['slug' => 'application'],'menu_icon' => get_template_directory_uri().'/img/icons/application.svg','has_archive' => true], ['plural_name' => 'Applications']); 

и вспомогательный класс, который выглядит следующим образом:

 <?php namespace KC; class ContentType { public $type; public $options = []; public $labels = []; /** * Creates a new ContentType object * @param string $type * @param array $options * @param array $labels */ public function __construct($type, $options = [], $labels = []) { $this->type = $type; $default_options = [ 'public' => true, 'publicly_queryable' => true, 'show_ui' => true, 'show_in_menu' => true, 'query_var' => true, 'rewrite' => ['slug' => strtolower($type)], 'capability_type' => 'page', 'has_archive' => true, 'hierarchical' => true, 'taxonomies' => ['post_tag','category'], 'supports' => ['title', 'editor', 'revisions', 'thumbnail','page-attributes','excerpt'] ]; $required_labels = [ 'singular_name' => ucwords($this->type), 'plural_name' => ucwords($this->type) ]; $this->options = $options + $default_options; $this->labels = $labels + $required_labels; $this->options['labels'] = $labels + $this->default_labels(); add_action('init', array($this, 'register')); } /** * Registers the content type using WP core function(s) * @return null */ public function register() { register_post_type($this->type, $this->options); } /** * Creates intelligent default labels from the required singular and plural labels * @return array */ public function default_labels() { return [ 'name' => $this->labels['plural_name'], 'singular_name' => $this->labels['singular_name'], 'add_new' => 'Add New ' . $this->labels['singular_name'], 'add_new_item' => 'Add New ' . $this->labels['singular_name'], 'edit' => 'Edit', 'edit_item' => 'Edit ' . $this->labels['singular_name'], 'new_item' => 'New ' . $this->labels['singular_name'], 'view' => 'View ' . $this->labels['singular_name'] . ' Page', 'view_item' => 'View ' . $this->labels['singular_name'], 'search_items' => 'Search ' . $this->labels['plural_name'], 'not_found' => 'No matching ' . strtolower($this->labels['plural_name']) . ' found', 'not_found_in_trash' => 'No ' . strtolower($this->labels['plural_name']) . ' found in Trash', 'parent_item_colon' => 'Parent ' . $this->labels['singular_name'] ]; } } 

Hopefuly это просто мое плохое, а не проблема WordPress.