Get List of Job Types with Links
-
Hi, I am trying this code to return bullets list of job types with links.
<ul class="category__list"> <?php foreach ( get_job_listing_types() as $type ) : ?> <li><a href="<?php echo site_url()."/jobs/?search_category=".esc_attr( $type->term_id );?>"><?php echo esc_html( $type->name ); ?></a> <?php endforeach; ?> </ul>
Anyone know what I am doing wrong?
Thanks
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Get List of Job Types with Links’ is closed to new replies.