Nemáte někdo tip na debug CPT + Custom taxonomy?
CPT funguje (front+admin)
CT - se tváří, že funguje, v adminiu, ale jakmile kliknu na nějakou kategorii v administraci, tak se to hodí prázdné (i když se to správně spočítá), typicky url:
http://domain.com/wp-admin/edit.php?year=2015&post_type=work
Na frontu mi funguje náhodně jedna kategorie, ostatní hází 404 a jedna z nich mi načte WP default blogovací příspěvek.
Co tam sakra může být špatně?
Zkoušela jsem flush_rewrite_rules(); a nepomaha.
function ct_year() {
$labels = array(
'name' => _x( 'Years', 'Taxonomy General Name', 'zuckmantel' ),
'singular_name' => _x( 'Year', 'Taxonomy Singular Name', 'zuckmantel' ),
'menu_name' => __( 'Years', 'zuckmantel' ),
'all_items' => __( 'All years', 'zuckmantel' ),
'parent_item' => __( 'Parent Item', 'zuckmantel' ),
'parent_item_colon' => __( 'Parent Item:', 'zuckmantel' ),
'new_item_name' => __( 'New year', 'zuckmantel' ),
'add_new_item' => __( 'Add New year', 'zuckmantel' ),
'edit_item' => __( 'Edit Item', 'zuckmantel' ),
'update_item' => __( 'Update Item', 'zuckmantel' ),
'view_item' => __( 'View Item', 'zuckmantel' ),
'separate_items_with_commas' => __( 'Separate items with commas', 'zuckmantel' ),
'add_or_remove_items' => __( 'Add or remove items', 'zuckmantel' ),
'choose_from_most_used' => __( 'Choose from the most used', 'zuckmantel' ),
'popular_items' => __( 'Popular Items', 'zuckmantel' ),
'search_items' => __( 'Search Items', 'zuckmantel' ),
'not_found' => __( 'Not Found', 'zuckmantel' ),
'no_terms' => __( 'No items', 'zuckmantel' ),
'items_list' => __( 'Items list', 'zuckmantel' ),
'items_list_navigation' => __( 'Items list navigation', 'zuckmantel' ),
);
$args = array(
'labels' => $labels,
'hierarchical' => true,
'public' => true,
'show_ui' => true,
'show_admin_column' => true,
'show_in_nav_menus' => true,
'show_tagcloud' => true,
);
register_taxonomy( 'year', array( 'work' ), $args );
}
add_action( 'init', 'ct_year', 0 );