All pastes #2050542 Raw Edit

Untitled

public php v1 · immutable
#2050542 ·published 2011-04-25 17:29 UTC
rendered paste body
<?phpinclude_once(ABSPATH.WPINC./rss.php’); // path to include script$feed = fetch_rss(‘http://yourRSSfeedhere.com/feed/’); // specify feed url$items = array_slice($feed->items, 0, 7); // specify first and last item?><?php if (!empty($items)) : ?><ul id=”ticker01″><?php foreach ($items as $item) : ?><li><a href=<?php echo $item['link']; ?>><?php echo $item['title']; ?></a><span><?php echo $item['pubdate']; ?></span></li><?php endforeach; ?></ul><?php endif; ?><? } ?>