将以下代码中的“taxonomy”替换为 Taxonomy 名称
代码: 全选
/**
* Custom taxonomy section below the post
*/
if( ! function_exists( 'tie_custom_post_terms' )){
add_action( 'TieLabs/after_post_content', 'tie_custom_post_terms', 31 );
function tie_custom_post_terms(){
if( ! is_singular( 'post' ) ){
return;
}
$the_id = get_the_ID();
the_terms( $the_id, 'taxonomy', '<div class="post-bottom-meta"><div class="post-bottom-meta-title"><span class="fa fa-tags" aria-hidden="true"></span> '. esc_html__( 'Tags', TIELABS_TEXTDOMAIN ) .'</div><span class="tagcloud">', ' ', '</span></div>' );
}
}