chihung
11/15/2019 - 6:21 AM

list all category of an taxonomy

 <?php
                                    foreach (get_the_terms(get_the_ID(), 'school_year') as $cat) {
                                        echo $cat->name;
                                    }
                                    ?>