我有一个CPT(产品),它有两个分类法(行业和部门)
我有一个回路,它提供了一个“按行业划分的产品”,它是有效的
行业1•结果1•结果2
行业2•结果1•结果2
(见下文)
<?php
$post_type = \'products\';
$tax = \'industry\';
$tax_terms = get_terms($tax);
if ($tax_terms) {
foreach ($tax_terms as $tax_term) {
$args=array(
\'post_type\' => $post_type,
"$tax" => $tax_term->slug,
\'post_status\' => \'publish\',
\'posts_per_page\' => -1,
\'caller_get_posts\'=> 1
);
$my_query = null;
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
echo \'<h3>\' . $tax_term->name .\'</h3>\';
while ($my_query->have_posts()) : $my_query->the_post();
?>
<p><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></p>
<?php
endwhile;
}
wp_reset_query();
}
}
。。。但我想让每个结果都以部门名称作为前缀
ie。
行业1•(部门)结果1•(部门)结果2
行业2•(部门)结果1•(部门)结果2
任何帮助都将不胜感激!