記事にカテゴリーを表示していますが、特定のカテゴリーIDを除外したく下記のように記載しているのですが、全てのカテゴリーが表示されなくなってしまいます。
指定したIDのカテゴリーを非表示にするにはどうしたらよいでしょうか?
コード <div class="row top-news-waku"> <?php $all_query = new WP_Query( array( 'post_type' => 'post', 'posts_per_page' => 4, ) ); ?> <?php if ( $all_query->have_posts() ) : ?> <?php while ( $all_query->have_posts() ) : ?> <?php $all_query->the_post(); ?> <!-- 記事一つ分 --> <div class="col-12 top-news-contents featured-box"> <div class="row"> <div class="col-4"> <figure class="anim border-margin"> <a href="<?php the_permalink(); ?>"> <?php if (has_post_thumbnail()) : ?> <?php the_post_thumbnail('thumbnail', array( 'class' => 'con-2-img' )); ?> </a> <?php else: ?> <a href="<?php the_permalink(); ?>"> <img class="con-2-img" src="<?php echo get_template_directory_uri(); ?>/imgs/kiji-img.png" width="100%" height="auto"></a> <?php endif; ?> </figure> </div> <!-- col-12--> <div class="col-8"> <p class="random-kategori"> <a href="<?php the_permalink(); ?>"> <span class="kategori-f-text text-white"> <?php $this_categories = get_the_category('exclude=82,22'); if ( $this_categories ) { foreach ( $this_categories as $cat ) { $this_category_color = get_field( 'color', 'category_' . $cat->term_id ); $this_category_name = $cat->name; echo '<span class="text-white mein-a" style="' . esc_attr( 'background:' . $this_category_color ) . ';">' . esc_html( $this_category_name ) . '</span>', ' '; } } ?> </span></a> </p> <a href="<?php the_permalink(); ?>"> <p class="random-kategori-t"> <?php if ( mb_strlen( $post->post_title ) > 50 ) { $title = mb_substr( $post->post_title, 0, 50 ); echo $title . ・・・; } else { echo $post->post_title; } ?> </p> <p class="post-content"> <?php the_excerpt(); ?> </p> <p class="top-date"><?php echo get_the_date(); ?></p> </a> </div> <div class="contents-parts"></div> <!-- col-12--> </div> <!-- row--> </div> <!--top-news-contents--> <!-- 記事一つ分終わり --> <?php endwhile; ?> <?php endif; ?> </div>
$this_categories = get_the_category();
↑これだと、全てのカテゴリーが表示されてしまいます。
$this_categories = get_the_category('exclude=82,22');
↑これだと、全てのカテゴリーが表示されなくなってしまいます。
82,22のカテゴリーIDを非表示にしたいです。
ご教授いただきたく、よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/13 11:11