WordPress: showing post categories inside loop
I have a small problem with showing all post categories for each post inside my loop on custom archive page. This is How I try to show them: $categories = get_the_terms( $post->ID, 'section' ); foreach ((array) $categories as $category) {…