Plugin: Recent Comments Author: Mark Wu Release Date: 2005/01/23 Version: 1.1 This plugin offers the most recently article comments (for regular templates and an RSS feed). Usage as follow: You can use: 1. $recentcomments->isEnabled() to check the plugin is enabled or not. 2. $recentcomments->getRecentComments( $maxComments , $based ) to get the recent comments. 3. $recentcomments->getRssFeedUrl() to get the URL to the recent comments feed for the current blog Where: 1. $maxComments is the the max comments you want to show. Default is 10. 2. $based is return the site-wide or blog-wide comments. "BLOG" means blog-wide, and "SITE" means site-wide. Default is "BLOG". Example: Add the following code to footer.template or header.template: {if $recentcomments->isEnabled()}

Recent Comments [rss]

{assign var=comments value=$recentcomments->getRecentComments()} {/if}