0
私は、WordPressのカスタムポストタイプUIプラグインを使用して、リソースライブラリとリソースカテゴリと呼ばれるカスタム分類を作成しました。タクソノミのページテンプレートのカテゴリをクエリするのに問題があります。誰かが私を助けてくれたらとても感謝しています。ここでCPT UIを使用してタクソノミのページを表示する
は、私は私の分類・リソース・categories.phpファイルを持っているコードです:
<?php $args = array(
'post_type' => 'resource-library',
'tax_query' => array(
array(
'taxonomy' => 'resource-categories',
'field' => 'slug',
'terms' => 'data-sheets',
),
),
); $query = new WP_Query($args);
?>
<?php while (have_posts()) : the_post(); ?>
<div class="blog-post-wrap">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<div class="post-thumb blog-index">
<?php
if (has_post_thumbnail()) { // check if the post has a Post Thumbnail assigned to it.
the_post_thumbnail('large');
}
?>
</div>
<div class="title-meta-wrap">
<?php if (strlen($post->post_title) > 75) {
echo substr(the_title($before = '', $after = '', FALSE), 0, 75) . '...'; } else {
the_title();
} ?>
</a>
<p><span class="theauthor"><?php the_date(); ?> <span style="color:#EC7906;">/</span><?php the_author(); ?> </span></p>
</div>
</div>
<?php endwhile; ?>