Well it’s my own theme ??
I don’t see where the problem could be… Is there some specific param to do with the custom taxonomy ?
here is mine :
// Initialize New Taxonomy Labels
$labels = array(
'name' => _x( 'Catégories emplois', 'taxonomy general name' ),
'singular_name' => _x( 'Catégorie', 'taxonomy singular name' ),
'search_items' => __( 'Rechercher' ),
'all_items' => __( 'Toutes les catégories' ),
'parent_item' => __( 'Catégorie parente' ),
'parent_item_colon' => __( 'Catégorie parente :' ),
'edit_item' => __( 'Editer la catégorie' ),
'update_item' => __( 'Mettre à jour' ),
'add_new_item' => __( 'Ajouter une catégorie' ),
'new_item_name' => __( 'Nouveau nom de catégorie' ),
);
// Custom taxonomy for Project Tags
register_taxonomy('category_emploi',array('emploi'), array(
'hierarchical' => false,
'labels' => $labels,
'show_ui' => true,
'query_var' => true,
'show_admin_column' => true,
'show_in_nav_menus' => true,
'rewrite' => false
));
and here is my archive-emploi.php :
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main">
<?php if ( have_posts() ) : ?>
<header class="page-header">
<h1 class="page-title"><?php post_type_archive_title(); ?></h1>
<?php
the_archive_description( '<div class="taxonomy-description container">', '</div>' );
?>
</header><!-- .page-header -->
<?php /* Start the Loop */ ?>
<div class="entry-content">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'template-parts/content', get_post_format() ); ?>
<?php endwhile; ?>
</div><!-- .entry-content -->
<?php else : ?>
<?php get_template_part( 'template-parts/content', 'none' ); ?>
<?php endif; ?>
</main><!-- #main -->
</div><!-- #primary -->
<?php get_footer(); ?>