Get taxonomy names by post id

Ooh, thank’s for the advices and help (Robert + Peter). The Term confused myself 🙂 This worked for me:

$taxonomies=get_taxonomies('','names');
wp_get_post_terms($post->ID, $taxonomies,  array("fields" => "names"));

Leave a Comment