web-dev-qa-db-ja.com

Archive.phpで名前とascの順序で結果をソートする

私は現在Archive.phpの投稿をリストするために次のコードを使用していますが、結果を名前の昇順で並べるようにしたいのですが、コーデックスをチェックしましたが答えが明確ではありません。

<?php $post = $posts[0]; // ?>

前もって感謝します。

11
Dave Burns

これを行う最も簡単な方法は、順番を変えるためにフック(pre_get_postsフック)を使うことです。しかし、クエリが順序を変更したいクエリであることを確認する必要があります。 ( is_archive() または is_post_type_archive() で十分です。)

例えば、あなたのテーマのfunctions.phpに以下を入れてください...

add_action( 'pre_get_posts', 'my_change_sort_order'); 
    function my_change_sort_order($query){
        if(is_archive()):
         //If you wanted it for the archive of a custom post type use: is_post_type_archive( $post_type )
           //Set the order ASC or DESC
           $query->set( 'order', 'ASC' );
           //Set the orderby
           $query->set( 'orderby', 'title' );
        endif;    
    };
29
Stephen Harris
<?php
// we add this, to show all posts in our
// Glossary sorted alphabetically
if ( is_category('Glossary') )  {
    $args = array( 
        'posts_per_page' => -1, 
        'orderby'        => 'title', 
        'order'          => 'ASC' 
    );
    $glossaryposts = get_posts( $args );
}
foreach( $glossaryposts as $post ) : setup_postdata( $post );
    ?>
    <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>

スティーブンの答えに加えて、タイトルだけでクエリして注文したい場合は、テンプレートファイルでこれを使用できます。

$args = ( array(
'order' => 'ASC',
'orderby' => 'title',
 ) );

query_posts($args);
0
josh