Created
September 24, 2013 20:01
-
-
Save MartinL83/6690426 to your computer and use it in GitHub Desktop.
Wordpress read external RSS
This file contains hidden or 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 // Source: http://www.wpbeginner.com/wp-tutorials/55-most-wanted-wordpress-tips-tricks-and-hacks/ ?> | |
<?php include_once(ABSPATH.WPINC.'/feed.php'); | |
$rss = fetch_feed('http://feeds.feedburner.com/wpbeginner'); | |
$maxitems = $rss->get_item_quantity(5); | |
$rss_items = $rss->get_items(0, $maxitems); | |
?> | |
<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 $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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi Martin, I know this is from 5 years ago, but did you ever manage to also get the image from each external post? Thanks!