如果您使用WPML 对于多语言支持,我以前使用过此代码。根据你的分类法修改。
<?php
//Get categories from current language
//Uses WPML Multi-language
$terms = get_terms(\'jw_portfolio_categories\',\'hide_empty=1\' );
if ( !empty( $terms ) ) {
$term_links = "";
foreach ( $terms as $term ) {
if( $term->term_id == icl_object_id( $term->term_id,\'jw_portfolio_categories\', false, ICL_LANGUAGE_CODE ) ) {
?>
<option value="<?php echo $term->id; ?>"><?php echo $term->name; ?></option>
<?php
}
}
echo join( \'\', $term_links );
}
?>