0
こんにちは対応するために、私はいくつかの分類法を持つカスタムポストタイプを持っていると私は、カスタムポストタイプの私の記事をループに次のコードを実行した:表示カテゴリ名カスタムポストタイプのポストに
<?php
global $wp_query;
$value = strtolower(get_the_title($post));
$wp_query = new WP_Query(array(
'posts_per_page' => 6,
'post_type' => array('howitworkspt'),
'order' => 'DESC'
)); ?>
<div class='questionContainerWrapper'>
<?php while ($wp_query->have_posts()) : $wp_query->the_post(); ?>
<article>
<div class='teamsShortCode question-container'>
<h2 class='question'>
<span>+</span>
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
</h2>
<div class='answer'><?php the_content(); ?></div>
</div>
</article>
<?php endwhile; ?>
</div>
とその結果としてされています
<div class="questionContainerWrapper">
<article>
<div class="teamsShortCode question-container">
<h2 class="question">
<span>+</span>
<a href="title link">question for category 1</>
</h2>
<div class="answer">answer here</div>
</div>
</article>
<article>
<div class="teamsShortCode question-container">
<h2 class="question">
<span>+</span>
<a href="title link">question2 for category 1</>
</h2>
<div class="answer">answer here</div>
</div>
</article>
<article>
<div class="teamsShortCode question-container">
<h2 class="question">
<span>+</span>
<a href="title link">question for category 2</>
</h2>
<div class="answer">answer here</div>
</div>
</article>
</div>
しかし、私がしたいことは次のとおりです。
<div class="questionContainerWrapper">
<h2>category1/taxonomy term name here</h2>
<article>
<div class="teamsShortCode question-container">
<h2 class="question">
<span>+</span>
<a href="title link">question for category 1</>
</h2>
<div class="answer">answer here</div>
</div>
</article>
<article>
<div class="teamsShortCode question-container">
<h2 class="question">
<span>+</span>
<a href="title link">question2 for category 1</>
</h2>
<div class="answer">answer here</div>
</div>
</article>
</div>
<div class="questionContainerWrapper">
<h2>category2/taxonomy term name here</h2>
<article>
<div class="teamsShortCode question-container">
<h2 class="question">
<span>+</span>
<a href="title link">question for category 2</>
</h2>
<div class="answer">answer here</div>
</div>
</article>
</div>
私はこれは試してみました:Get category name with these post by custom post typeですが、カテゴリに関係なく同じ投稿が得られ、そのカテゴリに関連する投稿を取得したいと考えています。
と「howitworkspt_category」を置換することを確認してくださいループ。 – Jevuska