我正在使用 SimplePie 在 Wordpress 中显示 RSS 提要。出于某种原因,get_date 函数什么也没返回?下面是我的代码。可能是我的提要有问题吗?
<h3><span class="dark-blue">news</span> & media</h3>
<ul>
<?php $feed = fetch_feed( 'http://dgpp.ie/dgppnews_rss.xml' );
foreach ( $feed->get_items() as $item ) {
printf( '<li><a href="%s"><strong>%s</strong></a>', $item->get_permalink(),
$item->get_title() );
printf( '<p>%s</p>', $item->get_description() );
printf( '<p>%s</p>', $item->get_date() );
printf( '<a href="%s" class="readmore">read more</a></li>', $item->get_permalink() );
}
?>
</ul>