Apparently this has ability has been built into wordpress for quite some time but a friend of mine recently pointed up that it can be done (pfblogs popular posts added to sidebar.) Here is the wordpress codex for this feature: http://codex.wordpress.org/Function_Reference/fetch_rss.
To add the p2p lending news to my sidebar I added the following to my theme…
<h3>P2P Lending News</h3>
<?php // Get RSS Feed(s)
include_once(ABSPATH . WPINC . ‘/rss.php’);
$rss = fetch_rss(‘http://www.p2pnobank.com/feed’);
$maxitems = 10;
$items = array_slice($rss->items, 0, $maxitems);
?>
<ul>
<?php if (empty($items)) echo ‘<li>No items</li>’;
else
foreach ( $items as $item ) : ?>
<li><a href=’<?php echo $item['link']; ?>‘
title=’<?php echo $item['title']; ?>‘>
<?php echo $item['title']; ?>
</a> (<?php echo $item['dc']['creator']; ?>)</li>
<?php endforeach; ?>
</ul>
- P2P No Bank — Aggregating P2P Lending Blogs — Covering Kiva, Lending Club, Prosper, Zopa, and more. I think my readers would like to know about: P2P No Bank. P2PNoBank aggregates all known blogs that blog about p2p lending semi-regularly. It does...
- P2P Lending In The News A couple of peer-to-peer (p2p) lending articles came out in major publications over the weekend… Enjoy… The ChicagoTribue: Peer-to-peer lending helpful, but know rules Sometimes...
- Lending Club on ABC News Lending Club was featured on the ABC Nightly News… P2P Lending is certainly starting to raise it’s profile… Social Lending Networks, New Alternative to Banks...
- Prosper.com 2 Sigma Listings This is the third installment of ProProsper’s new listings via RSS feed… 2 sigma listings are AA-E credit grades with an interest rate greater than...
- Prosper.com 1 Sigma Listings This is the fouth installment of ProProsper’s new listings via RSS feed… 1 sigma listings are AA-E credit grades with an interest rate greater than...
If you liked this article, vote for it on del.icio.us and stumbleupon.
Categories:

0 comments ↓
There are no comments yet...Kick things off by filling out the form below.
Leave a Comment