Code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
include_once(ABSPATH.WPINC.'/feed.php'); | |
$rss = fetch_feed('http://example.com/feed'); | |
$maxitems = $rss->get_item_quantity(5); | |
$rss_items = $rss->get_items(0, $maxitems); | |
?> | |
<ul> | |
<?php if ($maxitems == 0) echo '<li>投稿は無いようです</li>'; | |
else | |
// Loop through each feed item and display each item as a hyperlink. | |
foreach ( $rss_items as $item ) : ?> | |
<li> | |
<a href='<?php echo $item->get_permalink(); ?>' title='<?php echo 'Posted '.$item->get_date('j F Y | g:i a'); ?>'><?php echo $item->get_title(); ?></a> | |
</li> | |
<?php endforeach; ?> | |
</ul> |
Screen shot
Note
Description | 外部サイトのRSSを表示する。形式も自分で設定可能。 |
---|---|
WordPress Ver. | 3.3.1 |
Via | Convert any RSS to HTML |