wp_list_categoryじゃない自由なカテゴリ一覧

http://www.nandani.sakura.ne.jp/web_all/cms/86/ より

http://www.nandani.sakura.ne.jp/web_all/cms/86/ より

  • タグ:
  • タグはありません
<?php
    $cat_all = get_terms( "category", "fields=all&get=all" );
    foreach($cat_all as $value):
 ?>
<p><a href="<?php echo get_category_link($value->term_id); ?>"><?php echo $value->name;?></a></p>
<?php endforeach; ?>