Advertisement
Guest User

Untitled

a guest
Jul 6th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. function dm_display_wpjm_categories () {
  2. $terms = wp_get_post_terms( get_the_ID(), 'job_listing_category' );
  3. if ( ! empty( $terms ) && ! is_wp_error( $terms ) ){
  4. echo '<ul>';
  5. foreach ( $terms as $term ) {
  6. echo '<li>' . '<a href="' . esc_url( get_term_link( $term ) ) . '">' . $term->name . '</a></li>';
  7. }
  8. echo '</ul>';
  9. }
  10. }
  11. add_shortcode('list_categories', 'dm_display_wpjm_categories');
  12. add_theme_support( 'job-manager-templates' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement