0
我試圖在我的博客中使用fetchfeed()
包含RSS源,並在sidebar.php中遍歷項目。而不是飼料,我得到這個文本「文件simplepie.php無法找到。」我搜索了一段時間,只能找到class-simplepie.php的引用,而不是simplepie.php。有沒有人知道這是怎麼回事?WordPress的RSS錯誤:「文件simplepie.php無法找到。」
這裏是我的代碼:
<?php if(function_exists('fetch_feed')): ?>
<?php include_once(ABSPATH.WPINC.'/feed.php');
$feed = fetch_feed('feed URL');
$limit = $feed->get_item_quantity(5);
$items = $feed->get_items(0, $limit);
if(!$items) {
echo "There was an error.";
} else { ?>
<?php foreach($items as $item): ?>
<div class="sidebar_post">
<p class="date"><?php echo $item->get_date('F j, Y'); ?></p>
<h5><?php echo $item->get_title(); ?></h5>
<p><?php echo $item->get_content(); ?></p>
</div>
<?php endforeach; ?>
<? } ?>
<?php endif; ?>
我已經試過了,它沒有效果。我需要做更多的事情而不是刷新頁面嗎? – sinrise
添加該行後,我重新安裝WordPress。仍然得到相同的結果。 – sinrise