Display Category Name of Current Post in WP Job Manager

Somthing like this should solve your problem –

<?php the_terms( $post->ID, 'job_listing_category', '', "https://wordpress.stackexchange.com/" ); ?>

You can read more about the_terms function here –

https://developer.wordpress.org/reference/functions/the_terms/

This should work for all taxonomies just change “job_listing_category”.