fatBuzz
6/11/2018 - 9:45 AM

List all the Categories on a site

Add the below snippet to output a list of categories to template, update the terms for custom taxonomies.

$terms = get_terms("category");
 $count = count($terms);
 if ( $count > 0 ){
     echo "<ul>";
     foreach ( $terms as $term ) {
       echo "<li>" . $term->name . "</li>";
 
     }
     echo "</ul>";
 }