为什么不试试:
function tag_count( $tagatts ) {
$tagatts = get_terms(
array(
\'taxonomy\' => \'gd_place_tags\',
\'hide_empty\' => false,
)
);
$tagatts_count = count ( $tagatts );
return $tagatts_count;
}
add_shortcode( \'tag_count\', \'tag_count\' );
它实际上应该返回术语计数。我只是使用php来计算,而不是使用wordpress函数。