Yes, no problems Mike.
Code below - paste into html mode and not the WP wysiwyg editor when creating your page, change 'mysite[dot]com/feed' to whatever the feed is for the site you want to pull the feed from.
Make sure both those plugins are active first.
Alter the variables as you see fit: ie, "num_items"=>15, could be 5 or 10 etc...
Code:
<!--- Put your page text/blurb in here as usual Mike --->
<phpcode>
<ul>
<?php
feedList(array("rss_feed_url"=>"http://mysite.com/feed",
"num_items"=>15,
"show_description"=>true,
"random"=>false,
"sort"=>"none",
"new_window"=>true,
"show_date"=>true,
"suppress_link"=>false
)
);
?>
</ul>
</phpcode>
Bookmarks