web-dev-qa-db-ja.com

カスタム分類リストの順序を変更する

デフォルトでは、WordPressはカスタム分類法を(この場合はタグとして)タグボックスに入力された順序ではなくアルファベット順に並べ替えます。

カスタム分類をポスト編集画面に入力された順序で表示する方法を知っている人はいますか?

問題のURLは以下のとおりです。 http://granadatheater.com/ /

GGW(Goes Good With)アーティストは現在アルファベット順に並べられていますが、入力された順番と同じ順序になるように変更したいと考えています。

つまり、Artist1、Artist3、Artist2と入力すると、サイトのフロントエンドに表示されるはずです。

11
curtismchale

これは「箱から出して」可能ではありません...

デフォルトの 'orderby'オプションは(昇順または降順)です。

  • ID名
  • Default
  • ナメクジ
  • カウント
  • term_group

これらはすべてコーデックスに詳述されています。

-

それはここにいくつかの賢い女性と紳士がいると言った。誰もがそれを解決することができれば、これらの人の一人は私が確信することができます!

0
George Wiscombe

かなりの検索と広範囲なテストの結果、私は答えを見つけました。

このコードをあなたのテーマのfunctions.phpに追加してください。

function set_the_terms_in_order ( $terms, $id, $taxonomy ) {
    $terms = wp_cache_get( $id, "{$taxonomy}_relationships_sorted" );
    if ( false === $terms ) {
        $terms = wp_get_object_terms( $id, $taxonomy, array( 'orderby' => 'term_order' ) );
        wp_cache_add($id, $terms, $taxonomy . '_relationships_sorted');
    }
    return $terms;
}
add_filter( 'get_the_terms', 'set_the_terms_in_order' , 10, 4 );

function do_the_terms_in_order () {
    global $wp_taxonomies;  //fixed missing semicolon
    // the following relates to tags, but you can add more lines like this for any taxonomy
    $wp_taxonomies['post_tag']->sort = true;
    $wp_taxonomies['post_tag']->args = array( 'orderby' => 'term_order' );    
}
add_action( 'init', 'do_the_terms_in_order');

(クレジット:これは - に基づいています - しかし - http://wordpress.kdari.net/2011/07/listing-tags-in-custom-order.html

7
Biranit Goren

私はこれが一種の不正行為であることを知っていますが、あなたはいつでも Simple Custom Post Order pluginを使うことができます。無料で、投稿の種類に加えて分類法を分類できます。

2
Nate

カスタム分類法のアルファベット順の子用語に対する答えを見つけるのに苦労しています...私はcore WPファイルを変更することをお勧めしません。アルファベット順の子用語へのリンクを含むカスタム分類法の説明。あなたのニーズに合うように修正してください、私はこれがそこに誰かに役立つことを願っています。

// Get Main Taxonomy for use in template file
$term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
$termTaxonomy = $term->taxonomy;

<h1><?php echo apply_filters( 'the_title', $term->name ); ?></h1>

<?php // test for description before unleashing a div 
if ( !empty( $term->description ) ): 
  echo '<div class="description">';
  echo $term->description;
  echo '</div>;
endif; ?>

// Now get children terms, using get_term & 'child_of' get's us alphabetical order
$termchildren = get_terms( $termTaxonomy, array(
  'child_of'     => $term->term_id,
  'hierarchical' => 0,
  'fields'       => 'ids',
  'hide_empty'   => 0
) );

// Make an alphabetical linked list
echo '<ul>';
foreach ($termchildren as $child) {
  $term = get_term_by( 'id', $child, $termTaxonomy );

  // Modify this echo to customize the output for each child term
  echo '<li><a href="' . get_term_link( $term->name, $termTaxonomy ) . '" alt="' .$term->description. '">' . $term->name . '</a></li>';
}
echo '</ul>';
2
Erik Rodne