Como posso obter taxonomias de um tipo de postagem?
Se eu tiver um tipo de postagem event
e precisar descobrir a lista de taxonomias anexadas a esse tipo de postagem. Como os encontro?
Como posso obter taxonomias de um tipo de postagem?
Se eu tiver um tipo de postagem event
e precisar descobrir a lista de taxonomias anexadas a esse tipo de postagem. Como os encontro?
Ei pessoal, acho que entendi! Depois de analisar algumas funções no arquivo taxonomy.php no WordPress, encontrei esta função get_object_taxonomies();
que fez o truque :)
Aqui está a função
function get_post_taxonomies($post) {
// Passing an object
// Why another var?? $output = 'objects'; // name / objects
$taxonomies = get_object_taxonomies($post, 'objects');
/*// Passing a string using get_post_type: return (string) post, page, custom...
$post_type = get_post_type($post);
$taxonomies = get_object_taxonomies($post_type, 'objects');*/
/*// In the loop with the ID
$theID = get_the_ID();
$post_type = get_post_type($theID);
$taxonomies = get_object_taxonomies($post_type, 'objects');*/
// You can also use the global $post
// edited to fix previous error $taxonomies
// edited to force type hinting array
return (array) $taxonomies; // returning array of taxonomies
}
for
ouforeach
.$taxonomies = get_object_taxonomies( array( 'post_type' => $post_type ) ); foreach( $taxonomies as $taxonomy ) : // Gets every "category" (term) in this taxonomy to get the respective posts $terms = get_terms( $taxonomy ); ?> <ul class="specials"><?php foreach( $terms as $term ) : ?> <li><h2 ><?php echo $term->name; ?></h2>
get_categories fará o trabalho.
fonte
Você já tentou alguma coisa? algo assim?
fonte
get_taxonomies();
função no codex, mas tinha uma documentação muito ruim e não fazia ideia de como posso passar os tipos de post.