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];
}
view raw gistfile1.aw hosted with ❤ by GitHub

Bill Erickson

Bill Erickson is the co-founder and lead developer at CultivateWP, a WordPress agency focusing on high performance sites for web publishers.

About Me
Ready to upgrade your website?

I build custom WordPress websites that look great and are easy to manage.

Let's Talk