I am a 29 year old designer with a great passion for new technologies, aesthetics and new ways of interacting with people. I also run a record label and blog about vinyl.

Contact

Currently looking for job opportunities.

Portfolio / CV
Linkedin - Behace - Cpluv Flickr - Last.fm - Twitter Soundcloud - RA - Discogs
post-thumb

This one loop will most probably change the most useful pieace of code i can recommend of.

This would pull an rss of your choice and list the number an item you choose.

(the list markup seems the reasonable one to use but this up to your needs)

<ul>
<?php // Get RSS Feed(s)
include_once(ABSPATH . WPINC . '/rss.php');
$rss = fetch_rss("[YOUR FEED HERE]");
$maxitems = [YOUR NUM OF ITEMS];
$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></li>
<?php endforeach; ?>
</ul>