탁소노미(카테고리) | 리스트 출력하기

|

설명

페이지에 탁소노미를 추가하는 방법입니다

<?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; ?>

참조

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다

클릭하여 복사