Answer the question
In order to leave comments, you need to log in
How to use taxonomies?
done 2 headings, added to the menu
but after clicking on them - an empty page I
create a taxonomy.php file - I add test
nothing is displayed anyway
<?php
add_action( 'init', 'register_post_types' );
function register_post_types() {
register_post_type('doc', array(
'label' => null,
'labels' => array(
'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,
'show_ui' => true,
'menu_icon' => 'dashicons-groups',
'supports' => array('title', 'editor', 'thumbnail'), // 'title','editor','author','thumbnail','excerpt','trackbacks','custom-fields','comments','revisions','page-attributes','post-formats'
'taxonomies' => array('category')
) );
Answer the question
In order to leave comments, you need to log in
You registered a post type, not a taxonomy, the single-doc.php
template will work for a post type.
Here is the template hierarchy
For a custom post type, it is better to register your taxonomies withregister_taxonomy()
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question