How do I return multiple selected categories slugs?
-
Hi guys,
Just one more question today, how to I return multiple selected categories slugs in WordPress?
I previously only required one category slug per post and I used the method below:
$selected_cat = ''; $work_cats = get_the_terms( $post->id, 'work_categories' ); foreach ( $work_cats as $work_cat ) { $selected_cat = $work_cat->slug; }
I need to return all selected categories for that particular post and use them in a filter on the website.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘How do I return multiple selected categories slugs?’ is closed to new replies.