Показать страницу обзора пользовательского типа таксономии - PullRequest
0 голосов
/ 18 апреля 2020

У меня есть пользовательский тип documentaries и таксономия для него documentary_category. Если я перехожу к / documentaries, я вижу страницу архива, которую я немного подправил в своем дочернем шаблоне, добавив архивные документальные фильмы. php.

Я хочу показать страницу с иерархической структурой всех условия в documentary_category.
Первый вопрос, который у меня возник, заключается в том, по какому URL я должен перейти?
Я попытался перейти к / documentary_category & / documentaries / documentary_category, но оба дали мне Not Found.

Я также попытался добавить файл шаблона в мою дочернюю тему taxonomy-documentary_category.php, что также привело к созданию Not Found.

Версия Wordpress: 5.4
Плагин пользовательских типов: CPT UI
Плагин пользовательских полей : ACF
Тема: Двадцать двадцать

CPT

{
  "documentaries": {
    "name": "documentaries",
    "label": "Documentaries",
    "singular_label": "Documentary",
    "description": "",
    "public": "true",
    "publicly_queryable": "true",
    "show_ui": "true",
    "show_in_nav_menus": "true",
    "delete_with_user": "false",
    "show_in_rest": "true",
    "rest_base": "",
    "rest_controller_class": "",
    "has_archive": "true",
    "has_archive_string": "",
    "exclude_from_search": "false",
    "capability_type": "post",
    "hierarchical": "true",
    "rewrite": "true",
    "rewrite_slug": "",
    "rewrite_withfront": "true",
    "query_var": "true",
    "query_var_slug": "",
    "menu_position": "",
    "show_in_menu": "true",
    "show_in_menu_string": "",
    "menu_icon": "",
    "supports": [
      "title",
      "thumbnail",
      "excerpt",
      "custom-fields",
      "comments",
      "page-attributes"
    ],
    "taxonomies": [
      "documentary_category"
    ],
    "labels": {
      "menu_name": "",
      "all_items": "",
      "add_new": "",
      "add_new_item": "",
      "edit_item": "",
      "new_item": "",
      "view_item": "",
      "view_items": "",
      "search_items": "",
      "not_found": "",
      "not_found_in_trash": "",
      "parent_item_colon": "",
      "featured_image": "",
      "set_featured_image": "",
      "remove_featured_image": "",
      "use_featured_image": "",
      "archives": "",
      "insert_into_item": "",
      "uploaded_to_this_item": "",
      "filter_items_list": "",
      "items_list_navigation": "",
      "items_list": "",
      "attributes": "",
      "name_admin_bar": "",
      "item_published": "",
      "item_published_privately": "",
      "item_reverted_to_draft": "",
      "item_scheduled": "",
      "item_updated": ""
    },
    "custom_supports": ""
  }
}

Таксономия

{
  "documentary_category": {
    "name": "documentary_category",
    "label": "Documentary categories",
    "singular_label": "Documentary category",
    "description": "",
    "public": "true",
    "publicly_queryable": "true",
    "hierarchical": "true",
    "show_ui": "true",
    "show_in_menu": "true",
    "show_in_nav_menus": "true",
    "query_var": "true",
    "query_var_slug": "",
    "rewrite": "false",
    "rewrite_slug": "",
    "rewrite_withfront": "1",
    "rewrite_hierarchical": "1",
    "show_admin_column": "false",
    "show_in_rest": "true",
    "show_in_quick_edit": "",
    "rest_base": "",
    "rest_controller_class": "",
    "labels": {
      "menu_name": "",
      "all_items": "",
      "edit_item": "",
      "view_item": "",
      "update_item": "",
      "add_new_item": "",
      "new_item_name": "",
      "parent_item": "",
      "parent_item_colon": "",
      "search_items": "",
      "popular_items": "",
      "separate_items_with_commas": "",
      "add_or_remove_items": "",
      "choose_from_most_used": "",
      "not_found": "",
      "no_terms": "",
      "items_list_navigation": "",
      "items_list": ""
    },
    "meta_box_cb": "",
    "object_types": [
      "documentaries"
    ]
  }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...