How to display a list of categories
I will show you how to display a list of categories in WordPress and also mark the active category, see code below: <?php // Get the current queried object $term = get_queried_object(); $term_id = ( isset( $term->term_id ) ) ? (int) $term->term_id : 0; $categories = get_categories( array( ‘taxonomy’ => ‘category’, // Taxonomy to retrieve … Read more