0

我想在模板頁面上顯示名爲standard_engine_specification的自定義分類的名稱類別。這是我迄今爲止的 - 它顯示了分類的所有類別,而不是顯示在管理面板中選中的類別。只顯示檢查類別的自定義分類

<?php 
 
/*variable to retrieve checked term*/ 
 

 
\t $ses_terms = get_the_terms($id, 'standard_engine_specification'); 
 
\t \t if($ses_terms && !is_wp_error($ses_terms)) { 
 
\t \t foreach($ses_terms as $term) { 
 

 
\t \t \t } 
 
\t \t } 
 
\t \t /*variable used to filter results*/ 
 
\t \t $ses_args = array(
 
\t \t 'taxonomy'  => 'standard_engine_specification', 
 
\t \t 'hierarchical' => true, 
 
\t \t 'tax_query' => array(array(
 
\t \t \t 'taxonomy' => 'standard_engine_specification', 
 
\t \t \t 'field' => 'slug', 
 
\t \t \t 'terms' => array($term->slug), 
 
\t \t \t 'operator' => 'IN' 
 
\t \t)) 
 
\t); 
 
\t \t \t \t 
 
?> 
 
<ul> 
 
<?php 
 
/*output checked categories based on filter*/ 
 
foreach (get_categories($ses_args) as $category) 
 
\t { 
 
\t \t echo "<li>"; 
 
\t \t echo $category->name; 
 
\t \t 
 
\t \t echo "</li>"; 
 
\t \t 
 
\t } 
 
?> 
 
</ul>

我已經差不多從我一直在使用後濾波類型誰知道他們在做什麼,能告訴我,爲什麼我錯過了一些其他的腳本,也許有人Frankensteined這這 - 我已經提出了一些意見。

回答

0

好的排序。我並不需要使用tax_query,我試圖做我所做的調用WooCommerce到模板頁面同樣的事情,但它是矯枉過正,所以我們學習:)

<?php 
 

 
$ses_terms = get_the_terms($post->ID, 'standard_engine_specification'); 
 
if($ses_terms && !is_wp_error($ses_terms)) { 
 
\t foreach($ses_terms as $term) { 
 
\t \t echo "<li>"; 
 
\t \t echo $term->name; 
 
\t \t echo "</li>"; 
 
\t } 
 
} 
 
?>

相關問題