0
我有2個網站,我希望使用RSS訂閱源從另一個展示一些帖子。以RSS訂閱源重新訂購商品
麻煩的是,默認似乎是按發佈日期排序,因爲我需要它們按標題排序。我使用Wordpress,它使用SimplePie(我相信這很常見?)。
有沒有辦法在顯示它們之前重新排序這些項目?謝謝。
/**
* $feed = the RSS feed to display (set via CMS option)
* $num_posts = the number of posts to display from the feed (set via CMS option)
*/
$max_items = 0;
if($feed !== '') :
$rss = fetch_feed($feed);
if(!is_wp_error($rss)) :
$max_items = $rss->get_item_quantity($num_posts);
$rss_items = $rss->get_items(0, $max_items);
endif;
endif;