在其他地方看过很多帖子,但没有什么能够达到标准。
我需要回应与自定义帖子类型相关的自定义分类的特定术语的描述。
现在,我正在成功执行以下循环,为每个学期的相关自定义帖子提取内容(在这种情况下,我的自定义帖子类型为'rental_gear',我的术语是'相机':
<? $args = array(
'post_type'=> 'rental_gear',
'type' => 'cameras',
'order' => 'ASC'
);
$the_query = new WP_Query( $args );
if($the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post();
?>
<li><a href="<? the_permalink(); ?>">› <? the_title(); ?></a></li>
<?php endwhile; endif; wp_reset_postdata(); ?>
我可以在此循环中提取术语的描述吗? 我试过'get_term'函数并拉'$ term-&gt; description;'但这些与帖子有关,这是一个概述页面,列出了许多帖子的信息(因此使用了循环)
答案 0 :(得分:1)
您没有提及自定义分类的名称,因此请替换your-taxonomy
。这将查询rental_gear
中camera
个your-taxonomy
个字词的所有<?php
$args = array(
'post_type' => 'rental_gear',
'tax_query' => array(
array(
'taxonomy' => 'your-taxonomy',
'field' => 'slug',
'terms' => 'camera'
)
)
);
$query = new WP_Query( $args );
个帖子。
{{1}}