0

我正在使用 SimplePie 在 Wordpress 中显示 RSS 提要。出于某种原因,get_date 函数什么也没返回?下面是我的代码。可能是我的提要有问题吗?

<h3><span class="dark-blue">news</span> &amp; 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>
4

1 回答 1

0

我对http://simplepie.org/wiki/setup/sample_page做了一个快速检查,这样它对我有用:

<?php

require_once('php/simplepie.inc');

$feed = new SimplePie();

$feed->set_feed_url('http://dgpp.ie/dgppnews_rss.xml');

$feed->init();

?>
<h3><span class="dark-blue">news</span> &amp; media</h3>
<ul>
<?php 

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>

于 2012-07-04T13:17:25.213 回答