The tag works with WordPress’s native taxonomy system:
Taxonomy Name: job_listing_type
Term Retrieval: Uses wp_get_post_terms()
Link Generation: Uses get_term_link()
HTML Processing: Sanitized with wp_kses()
for linked output
HTML Output Examples
Single Type (No Links):
Full Time
Multiple Types (No Links):
Full Time, Contract, Remote
Single Type (With Links):
<a href="https://example.com/job-type/full-time">Full Time</a>
Multiple Types (With Links):
<a href="https://example.com/job-type/full-time">Full Time</a>, <a href="https://example.com/job-type/contract">Contract</a>, <a href="https://example.com/job-type/remote">Remote</a>