如何在 WordPress archive 清單頁裡改變文章順序

Home WordPress 如何在 Wordpress archive 清單頁裡改變文章順序
如何在 WordPress archive 清單頁裡改變文章順序
WordPress

一個簡單的方法是利用 hook (pre_get_posts hook) 來改變順序。舉例來說,你可以在 theme 資料夾裡的 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', 'DESC' );
           //Set the orderby
           $query->set( 'orderby', 'publish_date' );
        endif;
    };

參考來源: https://wordpress.stackexchange.com/a/39818

相關文章