2017-04-05 93 views
1

有沒有什麼辦法可以在WP_Query中通過文件名訂購附件?WP_Query - 按文件名順序附件?

例如,在參數:

$args = array(
    'post_type' => 'attachment', 
    'post_status' => 'inherit', 
    'post_mime_type' => 'image', 
    'order' => 'DESC', 
    'orderby' => 'filename' 
); 

回答

0

有在獲取附件的說法沒有排序依據filename選項。您需要根據附件陣列中的可用值自行排序附件數組。要按文件名排序,您可以使用guid值。

請仔細閱讀本鏈接的值進行排序陣列 php array sort within array based on the value