我正在尝试让此foreach以ABC顺序列出项目,但我根本无法使它正常工作,下面的代码是我尝试对它使用sort / usort的方法,但均无济于事。
有人可以建议解决方案吗?
print '<div class="my-filter"><input type="checkbox" value=".property-column" id="all" checked /><label for="all" class="image-type" onclick="">' . __( 'All', 'wpestate-child' ) . '</label></div>';
foreach ( $terms as $term ) {
$term = get_term( $term, 'property_image_type' );
if( $term->name != '' ) {
print '<div class="my-filter"><input type="checkbox" value=".property-column.' . $term->slug . '" id="' . $term->slug . '" /><label for="' . $term->slug . '" class="image-type" onclick="">' . $term->name . '</label></div>';
}
}