« Return to Thread: seeking a built-in wp function that does..

Re: seeking a built-in wp function that does..

by Andrew Nacin-2 :: Rate this Message:

| View in Thread

2012/4/19 Haluk Karamete <halukkaramete@...>

> Is there a built in wordpress function that let's me look up the
> "parent" field of the "wp_term_taxonomy" table if I pass the TT_ID to
> it?

On Thu, Apr 26, 2012 at 10:09 AM, Lionel POINTET <
lionel.pointet@...> wrote:

> Hi Haluk,
>
> Doing this: $term = get_term($term_id, $taxonomy);
> And then $term->parent, you get its parent.
>
> But it's with the term_id, you should never access the term_taxonomy_id
> since it's only a "link" ID.


Right, term_taxonomy_id is purely internal. No APIs expose it as a function
argument. That is why you always need to pass $term_id *and* $taxonomy (or
a $term object) to most functions.

Nacin
_______________________________________________
wp-hackers mailing list
wp-hackers@...
http://lists.automattic.com/mailman/listinfo/wp-hackers

 « Return to Thread: seeking a built-in wp function that does..