wordpress ターム表示

<?php
// タクソノミー
$taxonomies = array(
	'category-type'
);
// オプションを指定
$args = array(
	'post_type' => 'nursery',
);
$terms = get_terms($taxonomies, $args);
foreach($terms as $data) {
	echo $data->name;
}
?>
PAGE TOP