自定义分类法不会按字母顺序显示

时间:2015-12-14 14:23:41

标签: wordpress

有没有人知道为什么会这样。 Wordpress按插入顺序列出我的自定义分类,而不是按字母顺序排列。这是我正在使用的代码。

function get_the_term_list_inclusief( $id, $taxonomy, $before = '', $sep = '', $after = '') {
$terms = get_the_terms( $id, $taxonomy );

if ( is_wp_error( $terms ) )
    return $terms;


if ( empty( $terms ) )
    return false;

$links = array();

foreach ( $terms as $term ) {
    $link = get_term_link( $term, $taxonomy );
    if ( is_wp_error( $link ) ) {
        return $link;
    }
    $links[] = '<a class="ajax" href="' . esc_url( $link ) . '" rel="tag">' . $term->name . '</a>';
}

/**
 * Filter the term links for a given taxonomy.
 *
 * The dynamic portion of the filter name, `$taxonomy`, refers
 * to the taxonomy slug.
 *
 * @since 2.5.0
 *
 * @param array $links An array of term links.
 */
$term_links = apply_filters( "term_links-$taxonomy", $links );

return $before . join( $sep, $term_links ) . $after;

}

是否可以使用此代码并按标题或ASC排序分类?

由于

1 个答案:

答案 0 :(得分:1)

尝试这是否有效:

// ...
$links = array();

usort($terms, function($a, $b) {
  return strcmp($a->name, $b->name);
});

foreach ( $terms as $term ) {
// ...