페이지에 탁소노미를 추가하는 방법입니다
<?php
$taxonomy = 'manual_subject';
$terms = get_terms($taxonomy); // Get all terms of a taxonomy
if ($terms && !is_wp_error($terms)) :
?>
<ul>
<?php foreach ($terms as $term) { ?>
<a href="<?php echo get_term_link($term->slug,$taxonomy); ?>"><?php echo $term->name; ?></a>
<?php } ?>
</ul>
<?php endif; ?>