Definition:
function &get_object_term_cache($id, $taxonomy) {}
Retrieves the taxonomy relationship to the term object id.
Parameters
- int|array $id: Term object ID
- string $taxonomy: Taxonomy Name
Return values
returns:Empty array if $terms found, but not $taxonomy. False if nothing is in cache for $taxonomy and $id.
Source code
function &get_object_term_cache($id, $taxonomy) {
$cache = wp_cache_get($id, "{$taxonomy}_relationships");
1512

February 12, 2011 


No comments yet... Be the first to leave a reply!