= ターム(カテゴリ)一覧取得 =
$args = array(‘hide_empty’ => false,’parent’=>false);
$terms = get_terms(‘news-cat‘,$args);
if($cats and is_array($cats)):
foreach($cats as $cat):
…
echo esc_html($cat->name);
echo esc_html($cat->slug);
echo esc_html($cat->term_id);
…
endforeach;
endif;