Skip to content

Instantly share code, notes, and snippets.

@picklepete
Created January 24, 2012 12:03
Show Gist options
  • Save picklepete/fdc9111054d9254fce05 to your computer and use it in GitHub Desktop.
Save picklepete/fdc9111054d9254fce05 to your computer and use it in GitHub Desktop.
>>> post_id = 130
>>>
>>> post_taxes = wp.call(taxonomies.GetPostTerms(post_id, True))
>>>
>>> post_taxes
{'category': [<WordPressTerm: Uncategorized>], 'author': [<WordPressTerm: picklepete>]}
>>>
>>> post_taxes = wp.call(taxonomies.GetPostTerms(post_id, False))
>>>
>>> post_taxes
[<WordPressTerm: perkins>, <WordPressTerm: clive>, <WordPressTerm: barry>, <WordPressTerm: picklepete>, <WordPressTerm: Uncategorized>]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment