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

#php #wordpress

#php #wordpress

Вопрос:

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

 $guides = new KCContentType('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']
    ];

  }
}
 

Надеюсь, это просто моя ошибка, а не проблема WordPress.

Ответ №1:

Я решил проблему сам, перейдя в Настройки-> постоянные ссылки в CMS WordPress и изменив настройку на другую. Сохраните его после выполнения этого и обновите свою страницу.

Изменение его обратно после этого решило мою проблему!