создал произвольный тип записи!
зарегистрировал таксономию.
Но при нажатии на ссылку этой таксономии. => 404 ошибка.
Помогите разобраться уже весь мозг сломал(((
add_action( 'init', 'create_post_type' );
function create_post_type() {
register_post_type( 'test_post',
array(
'labels' => array( // добавляем новые элементы в административную частьку
'name' => __( 'TEST' ),
'singular_name' => __( 'Работа' ),
'has_archive' => true,
'add_new' => 'Добавить новую работу',
'not_found' => 'Ничего не найдено',
'not_found_in_trash' => 'В корзине работ не найдено'
),
'public' => true,
'has_archive' => true,
'supports' => array( //добавляем элементы в редактор
'title',
'editor',
'author',
'trackbacks',
'thumbnail',
'page-attributes',
'post-formats',
'custom-fields'
),
'taxonomies' => array('post_tag') //добавляем к записям необходимый набор таксономий
));
}
add_filter('pre_get_posts', 'query_post_type');
function query_post_type($query) {
if(is_category() || is_tag()) {
$post_type = get_query_var('post_type');
if($post_type)
$post_type = $post_type;
else
$post_type = array('post','test_post');
$query->set('post_type',$post_type);
return $query;
}}
// хук для регистрации
add_action('init', 'create_taxonomy');
function create_taxonomy(){
// список параметров: http://wp-kama.ru/function/get_taxonomy_labels
register_taxonomy('taxonomy', array('test_post'), array(
'label' => '', // определяется параметром $labels->name
'labels' => array(
'name' => 'Genres',
'singular_name' => 'Genre',
'search_items' => 'Search Genres',
'all_items' => 'All Genres',
'parent_item' => 'Parent Genre',
'parent_item_colon' => 'Parent Genre:',
'edit_item' => 'Edit Genre',
'update_item' => 'Update Genre',
'add_new_item' => 'Add New Genre',
'new_item_name' => 'New Genre Name',
'menu_name' => 'Genre',
),
'description' => '', // описание таксономии
'public' => true,
'publicly_queryable' => null, // равен аргументу public
'show_in_nav_menus' => true, // равен аргументу public
'show_ui' => true, // равен аргументу public
'show_tagcloud' => true, // равен аргументу show_ui
'show_in_rest' => null, // добавить в REST API
'rest_base' => null, // $taxonomy
'hierarchical' => true,
'update_count_callback' => '',
'rewrite' => true,
//'query_var' => $taxonomy, // название параметра запроса
'capabilities' => array(),
'meta_box_cb' => null, // callback функция. Отвечает за html код метабокса (с версии 3.8): post_categories_meta_box или post_tags_meta_box. Если указать false, то метабокс будет отключен вообще
'show_admin_column' => false, // Позволить или нет авто-создание колонки таксономии в таблице ассоциированного типа записи. (с версии 3.5)
'_builtin' => false,
'show_in_quick_edit' => null, // по умолчанию значение show_ui
) );
}