您可以使用get_queried_object
获取术语名称
<?php if( is_tax() ) {
global $wp_query;
$term = $wp_query->get_queried_object();
$title= $term->name;
} ?>
要显示:
<?php echo $title; ?>
如果在分类法存档页面上,您可以使用:
<?php $term = get_term_by( \'slug\', get_query_var( \'term\' ), get_query_var( \'taxonomy\' ) ); ?>
然后显示术语:
<?php echo $term->name; ?>
The following properties are available for the $term object:
term\\u id名称slugterm\\u组term\\u分类分类描述父计数