Wordpress get all categories associated with post

104 Views Asked by At

I've created a custom post type with taxonomies and have a template page to display the cpt. Is it possible to get all the categories attached to a post within the loop and output them on the page?

Thanks

1

There are 1 best solutions below

1
On

you can try something like that

foreach ( get_posts( 'numberposts=-1') as $post ) {
     wp_set_object_terms($post_id, 'category_name', 'category');
}