복붙노트

[WORDPRESS] WordPress에서 상위 범주 목록 (링크 포함) 목록을 표시하는 방법

WORDPRESS

WordPress에서 상위 범주 목록 (링크 포함) 목록을 표시하는 방법

해결법


  1. 1.이걸로 해봐. 나는 전에 시험했다

    이걸로 해봐. 나는 전에 시험했다

    <?php 
        $args = array(
          'orderby' => 'name',
          'hierarchical' => 1,
          'taxonomy' => 'category',
          'hide_empty' => 0,
          'parent' => 0,
        );
        $categories = get_categories($args);
    
        foreach($categories as $category) {
    
          echo '<a href="' . get_category_link($category->cat_ID) . '" title="' . $category->name . '">' . $category->name . '</a><br>';
    
          } 
      ?>
    

    또는 이것을 시도하십시오. 어느 것이 더 낫지 않은지 알려 드리겠습니다.

    <?php wp_list_cats('optionall=0&depth=1&list=0&exclude=1&children=0&hide_empty=0'); ?`>
    
  2. from https://stackoverflow.com/questions/29191234/how-to-display-a-list-of-parent-categories-with-links-in-wordpress by cc-by-sa and MIT license