web-dev-qa-db-ja.com

カスタム投稿タイプでのカスタムカテゴリ(分類)名の表示

私はresultsというカスタム投稿タイプを持っています。その特定の投稿タイプのカテゴリもあります。

私の目標は、カスタム投稿タイプの投稿のカテゴリ名をHTMLクラスとして設定してエコーアウトすることです。

これが私のカスタム投稿タイプとカスタム分類を設定するコードです。

// Create custom post type
function create_posttype() {
    register_post_type( 'Results',
        array(
            'labels' => array(
                'name' => __( 'Results' ),
                'singular_name' => __( 'Results' )
            ),
            'public' => true,
            'has_archive' => true,
            'rewrite' => array('slug' => 'results'),
            'taxonomies'  => array( 'results', 'result-category' ),
        )
    );
}
add_action( 'init', 'create_posttype' );

//Create category for specific post type
function tr_create_my_taxonomy() {
    register_taxonomy(
        'results-categories',
        'results',
        array(
            'label' => __( 'Result Categories' ),
            'rewrite' => array( 'slug' => 'result-category' ),
            'hierarchical' => true,
        )
    );
}
add_action( 'init', 'tr_create_my_taxonomy' );

私のページの1つにカスタム投稿タイプを表示する方法がどのようにあるかを説明します。

<?php
$query = new WP_Query( array( 'post_type' => 'Results',  'posts_per_page' => -1 ) );
if ( $query->have_posts() ) : ?>
    <?php while ( $query->have_posts() ) : $query->the_post(); ?>
        <div class="result-item">
            <div class="<?php //GOAL: code to display the category ?>"></div>
        </div>
    <?php endwhile; wp_reset_postdata(); ?>
<?php else : ?>
<?php endif; ?>

ありがとうございます。

1
cup_of
 <?php  foreach((get_the_category()) as $category) { ?>
  <a href="<?php echo $category->category_nicename . ' '; ?>"><?php echo $category->category_nicename . ' '; ?></a>

ここに上記のコードを挿入する// GOAL:カテゴリを表示するコード//

1
DHL17