Get Recent Comments WordPress Plugin Review

Jun 2, 2010 by

Wordpress logoThis plugin shows excerpts of the latest comments and/or trackbacks in your sidebar. You have comprehensive control about their appearance. This ranges from the number of comments, the length of the excerpts up to the html layout.You can let the plugin order the comments by the corresponding post, or simply order them by date.

The plugin can (optionally) separate the trackbacks/pingbacks from the comments. It can ignore comments to certain categories, and it offers support for gravatars. It only gives extra work to the database, when actually a new comment arrived. You can filter out unwanted pingbacks, which originate from your own blog. And it is a widget.

Features

  • Highly configurable via WordPress admin interface.
  • Support for WordPress 1.5.x, 2.0.x, 2.1.x, 2.2.x, 2.3.x, 2.5.x, 2.6.x, 2.7.x and 2.8
  • Adjustable layout by macros.
  • Handles trackbacks and comments in separate lists, or in one combined list.
  • Widget support
  • Caches the output
  • Order comments by date, or by posting
  • Support for gravatars.
  • Option to exclude comments to posts in certain categories
  • Doesn’t show pingbacks originating from own blog

Installation

  1. Upload get-recent-comments.php to the /wp-content/plugins/ directory.
  2. Activate Get Recent Comments through the ‘Plugins’ menu in WordPress.
  3. What to do now depends on how up to date your theme is:
    Theme with widget support

    The plugin is a widget.If your theme supports widgets, and you have installed the widgetplugin, adding the plugin to the sidebar is easy: Go to the presentation menu and drag and drop the widget into the sidebar. Don’t forget the Get Recent Trackbacks box. And you might want to change the title. All done.
  4. Theme without widget support
    You need to insert the following code snippet into the sidebar template.wp-content/themes/<name of theme>/sidebar.php

    <?php if (function_exists('get_recent_comments')) { ?>
    <li><h2><?php _e('Recent Comments:'); ?></h2>
          <ul>
          <?php get_recent_comments(); ?>
          </ul>
    </li>
    <?php } ?>   
    
    <?php if (function_exists('get_recent_trackbacks')) { ?>
    <li><h2><?php _e('Recent Trackbacks:'); ?></h2>
          <ul>
          <?php get_recent_trackbacks(); ?>
          </ul>
    </li>
    <?php } ?>
    

Download:Get Recent Comments

What People Are Looking For:

latest comments wordpress plugin.

Related Posts

Share This

1 Comment

  1. Register Web Domain

    Recently I have been seeing this recent comments on several blogs and was wondering how they were able to do that. I thought it was a plugin or module, but now I did understand the way it is done.

Leave a Comment

*