我已使用重写的名称注册了自定义帖子分类法:
register_taxonomy(\'behold_gallery-albums-subject\', \'behold_gallery\',array(
\'hierarchical\' => true,
\'labels\' => $labels,
\'show_ui\' => true,
\'show_admin_column\' => true,
\'rewrite\' => array( \'slug\' => \'kategorie-galerii\', \'with_front\' => true ),
\'update_count_callback\' => \'_update_post_term_count\',
\'query_var\' => true,
));
所以,我的自定义分类法的名称是“seek\\u gallery-albums-subject”,但被重写为“kategorie galerii”。
如果我想得到这个分类法的名称,我可以使用这个
$postsTaxonomy = get_sub_field(\'archive__post-choose-taxonomy\'); // ACF
$postsTerm = get_term_by( \'slug\', get_query_var( \'term\' ), get_query_var( \'taxonomy\' ) );
$postsTerm_id = $postsTerm->term_id;
$PostsTaxName = get_taxonomy($postsTaxonomy)->labels->name;
但是我怎么才能得到这个重写过的名字,而不是“原来的”?
谢谢