the_taxonomies
函数
the_taxonomies ( $args = array() )
- 参数
-
-
(array)
$args
{ Arguments about which post to use and how to format the output. Shares all of the arguments supported by get_the_taxonomies(), in addition to the following. @type int|WP_Post $post Post ID or object to get taxonomies of. Default current post. @type string $before Displays before the taxonomies. Default empty string. @type string $sep Separates each taxonomy. Default is a space. @type string $after Displays after the taxonomies. Default empty string. }- Required: 否
- Default: array()
-
(array)
- 定义位置
-
-
wp-includes/taxonomy.php
, line 4674
-
wp-includes/taxonomy.php
- 引入
- 2.5.0
- 弃用
- –
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.
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']; }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。