2
我對RSS提要有疑問。我正在使用wordpress ver 3.2.1並在我的網站中使用其他網站rss feed。我的要求是明智地獲取Feed,並在我的網站側欄中顯示。如何從其他網站獲取月明智的rss feed
目前我使用的RSS窗口小部件,並顯示在側邊欄的飼料,但他們在下面的格式進來:
- 9-29星期四下午4:30基本任務 - 家長信息夜
- 週四10-6 - 全天 - 半天:小學會議
我會非常感謝您的幫助。提前致謝。
更新: 2012年3月13日
此代碼出現在的index.php
<h2><?php _e('Recent news from Some-Other Blog:'); ?></h2>
<?php // Get RSS Feed(s)
include_once(ABSPATH . WPINC . '/feed.php');
// Get a SimplePie feed object from the specified feed source.
//$rss = fetch_feed('http://example.com/rss/feed/goes/here');
$rss = fetch_feed('http://lakewashington.intand.com/index.php?type=export&action=rss&schools=48&groups=884,876,874,996');
print_r($rss);
if (!is_wp_error($rss)) : // Checks that the object is created correctly
// Figure out how many total items there are, but limit it to 5.
$maxitems = $rss->get_item_quantity(5);
// Build an array of all the items, starting with element 0 (first element).
$rss_items = $rss->get_items(0, $maxitems);
endif;
?>
<ul>
<?php if ($maxitems == 0) echo '<li>No items.</li>';
else
// Loop through each feed item and display each item as a hyperlink.
foreach ($rss_items as $item) : ?>
<li>
<a href='<?php echo esc_url($item->get_permalink()); ?>'
title='<?php echo 'Posted '.$item->get_date('j F Y | g:i a'); ?>'>
<?php echo esc_html($item->get_title()); ?></a>
</li>
<?php endforeach; ?>
</ul>
親愛的TCattd,首先我想說感謝您關注我的問題。我錯了 - 最近的新聞來自Some-Other博客: WP_Error Object([errors] => Array([simplepie-error] => Array([0] => WP HTTP錯誤:無法打開fopen()到http://lakewashington.intand.com/index.php?type=export&action=rss&schools=48&groups=884,876,874,996))[error_data] => Array()) *沒有項目。 – w3uiguru
你能粘貼你使用的整個代碼嗎? – TCattd
檢查我更新的代碼。 – w3uiguru