How to display all the categories a post is in

How do I display all of the categories that a post is in, in sentence format.

eg. cars, boats, aircraft, bicycles.

Related posts

1 comment

  1. In the loop use <?php the_category(', '); ?> or outside the loop :

    $post_categories = wp_get_post_categories( $post_id );
    
    foreach($post_categories as $c){
        $cat = get_category( $c );
        echo $cat->name . ",";
    }
    

Comments are closed.