Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created November 20, 2011 20:44
Show Gist options
  • Select an option

  • Save billerickson/1380880 to your computer and use it in GitHub Desktop.

Select an option

Save billerickson/1380880 to your computer and use it in GitHub Desktop.
Get Single Term
<?php
/**
* Get Single Term
* @author Bill Erickson
* @link http://www.billerickson.net/code/get-single-term
*
* @param int $post_ID
* @param string $taxonomy
* @return object $single_term
*/
function be_get_single_term( $post_ID, $taxonomy ) {
$term = false;
$term = wp_get_object_terms( $post_ID, $taxonomy, array( 'count' => '1' ) );
return $term[0];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment