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()
定义位置
相关方法
get_the_taxonomiesget_taxonomiesget_post_taxonomiesget_taxonomyget_object_taxonomies
引入
2.5.0
弃用
-

taxonomes是一个WordPress函数,它显示分配给当前文章的分类列表。它可以用于为用户提供一种快速的方法,根据文章的分类术语查找相关内容。

显示一个文章的分类标准和可用的选项。

这个函数可以在循环中使用,显示一个文章的分类法,而不需要指定文章的ID。你也可以在Loop之外使用它来显示一个特定文章的分类标准。

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'];
}

常见问题

FAQs
查看更多 >