Advertisement
Guest User

Untitled

a guest
Jun 29th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. function get_the_first_term( $post_id , $taxonomy , $property = '' ){
  2. $terms = wp_get_post_terms( $post_id , $taxonomy );
  3. if ( is_wp_error( $terms ) || empty( $terms ) ) return 0;
  4. if ( ! $property ) return $terms[0];
  5. return $terms[0]->$property;
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement