Show category-ID in custom category-list
Try this: <div id=”category-list”> <ul class=”topnav”> <?php if (is_single()){ global $post; $pid = $post->ID; $post_categories = wp_get_post_categories( $post->ID ); $cats = array(); foreach($post_categories as $c){ $cat = get_category( $c ); $cats[] = $cat->ID; } $active_cat_count = true; $cat_count = 0; } $kategorien = get_categories(array( ‘child_of’ => 0, ‘exclude_tree’ => 15, ‘exclude’ => 16, ‘orderby’ => … Read more