wpseek.com
A WordPress-centric search engine for devs and theme authors
the_taxonomies › WordPress Function
Since2.5.0
Deprecatedn/a
› the_taxonomies ( $args = array() )
Parameters: |
|
Defined at: |
|
Codex: |
Displays the taxonomies of a post with available options.
This function can be used within the loop to display the taxonomies for a post without specifying the Post ID. You can also use it outside the Loop to display the taxonomies for a specific post.Related Functions: get_the_taxonomies, get_taxonomies, get_post_taxonomies, get_taxonomy, get_object_taxonomies
Source
function the_taxonomies( $args = array() ) { $defaults = array( 'post' => 0, 'before' => '', 'sep' => ' ', 'after' => '', ); $parsed_args = wp_parse_args( $args, $defaults ); echo $parsed_args['before'] . implode( $parsed_args['sep'], get_the_taxonomies( $parsed_args['post'], $parsed_args ) ) . $parsed_args['after']; }