Страница таксономии CPT WordPress не работает

Это было задано много раз в stackoverflow, но я делаю все, и ничего не работает, я все еще получаю «Ой! Эта страница не может быть найдена».

Я получил шаблон, где я зацикливал таксоны CPT со ссылкой [ образ ]

Когда я нажимаю одну из категорий, я получаю URL-адрес

http://comisionpais.com/categorias/educacion/ http://comisionpais.com/categorias/{taxonomy} 

Я создал эти файлы

 taxonomy-comision-publicaciones.php taxonomy.php category-publica.php category.php 

и это код для 3 CPT, которые я использую

 /****************** Custom Post Type ***************/ // Our custom post type function function create_posttype() { register_post_type( 'publica', // CPT Options array( 'labels' => array( 'name' => __( 'Publicaciones' ), 'singular_name' => __( 'Publicación' ) ), 'public' => true, 'has_archive' => true, 'rewrite' => array('slug' => 'publicacion'), // Features this CPT supports in Post Editor 'supports' => array( 'title', 'editor', 'excerpt', 'author', 'thumbnail' ), 'has_archive' => true, 'exclude_from_search' => false, 'publicly_queryable' => true, 'capability_type' => 'page', 'menu_icon' => 'dashicons-book', ) ); register_post_type( 'entrev', // CPT Options array( 'labels' => array( 'name' => __( 'Entrevistas' ), 'singular_name' => __( 'Entrevista' ) ), 'public' => true, 'has_archive' => true, 'rewrite' => array('slug' => 'entrevista'), // Features this CPT supports in Post Editor 'supports' => array( 'title', 'editor', 'excerpt', 'author', 'thumbnail' ), 'has_archive' => true, 'exclude_from_search' => false, 'publicly_queryable' => true, 'capability_type' => 'page', 'menu_icon' => 'dashicons-video-alt3', ) ); register_post_type( 'reco', // CPT Options array( 'labels' => array( 'name' => __( 'Reconocimientos' ), 'singular_name' => __( 'Reconocimiento' ) ), 'public' => true, 'has_archive' => true, 'rewrite' => array('slug' => 'reconocimiento'), // Features this CPT supports in Post Editor 'supports' => array( 'title', 'editor', 'excerpt', 'author', 'thumbnail' ), 'has_archive' => true, 'exclude_from_search' => false, 'publicly_queryable' => true, 'capability_type' => 'page', 'menu_icon' => 'dashicons-awards', ) ); } // Hooking up our function to theme setup add_action( 'init', 'create_posttype' ); /****** CPT Category Link ******/ function create_comision_taxonomies() { $labels = array( 'name' => _x( 'Categories', 'taxonomy general name' ), 'singular_name' => _x( 'Category', 'taxonomy singular name' ), 'search_items' => __( 'Search Categories' ), 'all_items' => __( 'All Categories' ), 'parent_item' => __( 'Parent Category' ), 'parent_item_colon' => __( 'Parent Category:' ), 'edit_item' => __( 'Edit Category' ), 'update_item' => __( 'Update Category' ), 'add_new_item' => __( 'Add New Category' ), 'new_item_name' => __( 'New Category Name' ), 'menu_name' => __( 'Categories' ), ); $args = array( 'hierarchical' => true, // Set this to 'false' for non-hierarchical taxonomy (like tags) 'labels' => $labels, 'show_ui' => true, 'show_admin_column' => true, 'query_var' => true, 'rewrite' => array( 'slug' => 'categorias' ), ); register_taxonomy( 'comision-publicaciones', array( 'publica' ), $args ); register_taxonomy( 'comision-entrevistas', array( 'entrev' ), $args ); register_taxonomy( 'comision-reconocimientos', array( 'reco' ), $args ); } add_action( 'init', 'create_comision_taxonomies', 0 ); 

Поэтому я обеспокоен тем, что я неправильно назвал файлы, но со всеми прочитанными, если я использую основное имя файла, например, taxonomy.php или category.php, будут использовать эти файлы, но ничего не происходит.

введите описание изображения здесь