私は以下のように機能設定をしています。
<?php $terms = get_terms("wpsc_product_category");
if ( !empty( $terms ) && !is_wp_error( $terms ) ){
foreach ( $terms as $term ) { ?>
<li class="calendar-filter-menu-item" data-filter=".<?php echo $term->slug; ?>"><?php echo $term->count; ?></li>
<?php }
} ?>
それぞれの分類について分類slug
とcount
が表示されますが、問題は、投稿がない分類が表示されていないこと、割り当てられた投稿を含む分類のみが表示されていること、空の分類も表示できますか?
hide_empty
get_terms()
の引数。デフォルト値はtrue
に設定されています。
このようにしてください。
$args = array(
'hide_empty' => false
);
$terms = get_terms( 'wpsc_product_category', $args );