if($brand_term_logo_banner_img): ?>
endif; ?>
// コレクション(第2階層(シリーズ)のターム郡) 取得
if($brand_term){
$brand_term_collection_args = array(
"orderby" => "term_order",
"order" => "ASC",
"hide_empty" => false,
"parent" => $brand_term->term_id,
);
} else {
$brand_term_collection_args = array(
"orderby" => "term_order",
"order" => "ASC",
"hide_empty" => false,
);
}
$brand_term_collection_array = ($brand_term) ? get_terms($brand_term->taxonomy, $brand_term_collection_args) : null;
// アイテム用
$brand_term_items_array = array();
if($brand_term){
$brand_term_items_array[] = $brand_term; // slug,taxonomy から対象タームを検索。
if($brand_term_collection_array){
$brand_term_items_array = array_merge($brand_term_items_array, $brand_term_collection_array);
}
}
?>