Sure thing - this is in the bottom center column of
http://www.theworshipcommunity.com homepage (in wordpress).
In our wordpress theme, we added this code:
Code:
<h2>Join in the Discussions ...</h2>
<?php
require_once (ABSPATH . WPINC . '/rss-functions.php');
// here's where to insert the feed address
$rss = @fetch_rss('http://www.theworshipcommunity.com/forums/external.php?type=RSS2');
if ( isset($rss->items) && 0 != count($rss->items) ) {
?>
<ul style="margin-left: 15px;">
<?php
// here's (5) where to set the number of headlines
$rss->items = array_slice($rss->items, 0, 14);
foreach ($rss->items as $item ) {
?>
<li style="margin-bottom: 10px'">
<a href='<?php echo wp_filter_kses($item['link']); ?>'>
<strong><?php echo wp_specialchars($item['title']); ?></strong>
</a><br />
<?php echo wp_specialchars($item['description']); ?>
</li>
<?php } ?>
</ul>
<?php } ?>
<p>
More in <a href="http://www.theworshipcommunity.com/forums/">the forums</a>.
</p>