BLACK FRIDAY
Save 59% on PageForge Annual $191/year $485/year
Claim 59% Off →
Safe Report Comments icon
Actively maintained Tested up to 7.0.6

Safe Report Comments

This plugin gives your visitors the possibility to report a comment as inappropriate. After a set threshold is reached the comment is put into moderation where the moderator can decide whether to approve it. If a…

Active installs100+100+ tier
Downloads · 30d275▼ -22.8% vs prev. 30d
Rating3/57 reviews
Health score63/100Good
All-time downloads28.7KSince May 2010
Support resolved—No recent threads
RequiresWP 6.4PHP 7.4+
Downloads · 7d62▼ -19.5% week over week
Our verdict

Solid choice

Safe Report Comments is a solid plugin choice in 2026, with a few things worth checking first. It runs on 100+ sites, is rated 3/5 and was last updated 1 month ago, and scores 63/100 on our health check.

  • Small user base (100+ active installs)
  • Low rating so far — 3/5 from only 7 reviews

How does it stack up?

Side-by-side on installs, updates, ratings & support

Daily downloads

214364Jun 29Aug 12Sep 26
Yesterday7
Daily average (1y)6
Peak day86Aug 20, 2026
Last 12 months2.3K

Download spikes usually follow a new release — each site that auto-updates counts as a download.

Rankings

Where Safe Report Comments stands today

WordPress.org search rankings

Live position in the plugin search, top 100
KeywordPositionCompeting pluginsCategory
comments #59 8,742 Best comments plugins →
flagging #6 158 Best flagging plugins →
inappropriate #4 70 Best inappropriate plugins →
report comments #4 2,168 Best report comments plugins →
spam >100 3,503 Best spam plugins →

Version adoption

Share of active sites per release.

  • 0.461.5%
  • 0.538.5%

Rating breakdown

★★★★★★★★★★ 3 from 7 reviews

  • 5★42.9%
  • 4★0.00%
  • 3★14.3%
  • 2★0.00%
  • 1★42.9%

About Safe Report Comments

From the official readme · v0.5.0

Description

This plugin gives your visitors the possibility to report a comment as inappropriate. After a set threshold is reached the comment is put into moderation where the moderator can decide whether to approve it. If a comment is approved by a moderator it will not be auto-moderated again while still counting the amount of reports.

Customizations

By default this plugin should work with most existing themes without any changes. It appends the flagging link to each comment and then, in the browser, moves it next to that comment’s reply link. The reply link is located via its core data-commentid attribute, so placement does not depend on your theme’s specific markup.

The report link ships unstyled and inherits your theme’s link styles from wherever it appears, so it can look different next to a reply link than at the end of a comment (the deepest threading level, which has no reply link). To adjust or unify its appearance, target the .safe-comments-report-link class in your theme’s CSS.

If you would rather control the placement yourself, you can place the flagging link manually. Define no_autostart_safe_report_comments in your theme’s functions.php file and initialize the class with auto-attachment disabled: $safe_report_comments = new Safe_Report_Comments( false );.

Here is an example of a custom setup in functions.php that places the flagging link via a comment callback function.

In functions.php:

// Flag comments plugin included in theme's functions.php - disable plugin.
define( 'no_autostart_safe_report_comments', true );
include_once( 'replace-with-path-to/safe-report-comments/safe-report-comments.php' );
// Make sure not to auto-attach to the comment reply link.
$safe_report_comments = new Safe_Report_Comments( false );

// Change link layout to have a pipe prepended.
add_filter( 'safe_report_comments_flagging_link', 'adjust_flagging_link' );
function adjust_flagging_link( $link ) {
    return ' | ' . $link;
}

// Adjust the text to "Report abuse" rather than "Report comment".
add_filter( 'safe_report_comments_flagging_link_text', 'adjust_flagging_text' );
function adjust_flagging_text( $text ) {
    return 'Report abuse';
}

In your custom comment callback function used by wp_list_comments, place the following action, which prints the link:

<?php do_action( 'comment_report_abuse_link' ); ?>

A possible callback function could look like this:

function mytheme_comment( $comment, $args, $depth ) {
    $GLOBALS['comment'] = $comment; ?>
    <li <?php comment_class(); ?> id="li-comment-<?php comment_ID() ?>">
        <div id="comment-<?php comment_ID(); ?>">
            <div class="comment-author vcard">
                <?php echo get_avatar( $comment, $size = '48', $default = '<path_to_url>' ); ?>
                <?php printf( __( '<cite class="fn">%s</cite> <span class="says">says:</span>' ), get_comment_author_link() ) ?>
            </div>
            <?php if ( $comment->comment_approved == '0' ) : ?>
            <em><?php _e( 'Your comment is awaiting moderation.' ) ?></em>
            <br />
        <?php endif; ?>
        <div class="comment-meta commentmetadata"><a href="<?php echo htmlspecialchars( get_comment_link( $comment->comment_ID ) ) ?>"><?php printf( __( '%1$s at %2$s' ), get_comment_date(), get_comment_time() ) ?></a><?php edit_comment_link( __( '(Edit)' ), '     ', '' ) ?></div>

        <?php comment_text() ?>

        <div class="reply">
            <?php comment_reply_link( array_merge( $args, array( 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ) ?>
        </div>
        <div class="report-abuse">
            <?php do_action( 'comment_report_abuse_link' ); ?>
        </div>
    </div>
    <?php
}

There are various other actions and filters within the plugin that allow you to alter its behaviour. Please see the inline documentation for details.

Notes

At the maximum threading depth WordPress does not render a reply link, so in automatic mode the flagging link stays at the end of the comment rather than moving next to a reply link. The link still works as normal. Earlier versions attached to the reply link itself and so showed no flagging link at all at this depth.

Installation

  1. Download and unzip the plugin.
  2. Copy the safe-report-comments directory into your plugins folder.
  3. Visit your Plugins page and activate the plugin.
  4. A new checkbox called “Allow comment flagging” will appear on the Settings → Discussion page.
  5. Activate the flag and set the threshold value, which appears on the same page once flagging is enabled.

Changelog

The full changelog is maintained in CHANGELOG.md.

Full changelog on WordPress.org →

Screenshots

Safe Report Comments screenshot
Safe Report Comments screenshot
Safe Report Comments screenshot
Safe Report Comments screenshot

For developers

Is this your plugin? Show off the numbers.

Add a live badge to your site, docs or GitHub README. It updates on its own — no account needed.

Active installs badge Rating badge Health score badge

Best Safe Report Comments alternatives

All comments plugins →
Alternatives
Rank Plugin Active installs Rating Updated Health
1 Akismet Anti-spam: Spam Protection Akismet Anti-spam: Spam Protection The best anti-spam protection to block spam comments and spam in a contact form. The most… by Automattic 5M+ ★★★★★★★★★★ 4.7 (1.2K) 1 month ago 94
2 Disable Comments – Remove Comments & Stop Spam [Multi-Site Support] Disable Comments Disable comments site-wide or by post type, delete existing comments in bulk, and block… by WPDeveloper 1M+ ★★★★★★★★★★ 4.7 (281) 4 weeks ago 88
3 Antispam Bee Antispam Bee Sophisticated antispam plugin for effective daily comment and trackback spam-fighting… by pluginkollektiv 700K+ ★★★★★★★★★★ 4.8 (226) 1 month ago 78
4 Gravatar Enhanced – Avatars, Profiles, and Privacy Gravatar Enhanced – Avatars, Profiles, and Privacy The official Gravatar plugin, featuring privacy-focused settings, easy profile updates, and… by Automattic 100K+ ★★★★★★★★★★ 5 (3) 6 months ago 54
5 Disable Comments Disable Comments Disable Comments - easy tool to disable comments for your blog posts, and pages. Admin can… by rbplugins 100K+ ★★★★★★★★★★ 3.8 (25) 2 days ago 86
6 Disqus Comment System Disqus Comment System Disqus is the web's most popular comment system. Use Disqus to increase engagement, retain… by Disqus 30K+ ★★★★★★★★★★ 2.7 (219) 4 days ago 68
7 Cookies for Comments Cookies for Comments Sets a cookie on a random URL that is then checked when a comment is posted. If the cookie… by Donncha O Caoimh (a11n) 10K+ ★★★★★★★★★★ 4.9 (18) 7 years ago 42
8 Throws SPAM Away Throws SPAM Away A powerful anti-spam plugin that silently discards spam comments without showing any error… by ウェブ屋のさとーさん 10K+ ★★★★★★★★★★ 5 (6) 1 month ago 81
9 Subscribe to Comments Subscribe to Comments Subscribe to Comments allows commenters on an entry to subscribe to e-mail notifications… by Mark Jaquith 10K+ ★★★★★★★★★★ 3.9 (14) 2 years ago 41
10 Native PHP Sessions Native PHP Sessions Use native PHP sessions and stay horizontally scalable. Better living through superior… by Pantheon Systems 10K+ ★★★★★★★★★★ 4.9 (16) 10 months ago 46

FAQ

Safe Report Comments: quick answers

Straight answers, pulled from live WordPress.org data.

Live data from WordPress.org · checked Sep 27, 2026

Is Safe Report Comments free?

Yes. Safe Report Comments is free to download and use from the official WordPress.org plugin directory.

Is Safe Report Comments safe to use in 2026?

Safe Report Comments is a solid plugin choice in 2026, with a few things worth checking first. It runs on 100+ sites, is rated 3/5 and was last updated 1 month ago, and scores 63/100 on our health check.

How many websites use Safe Report Comments?

Safe Report Comments is active on 100+ WordPress websites and has been downloaded 28,747 times since it launched in May 2010. It was downloaded 275 times in the last 30 days.

Does Safe Report Comments work with WordPress 7.1?

Safe Report Comments is officially tested up to WordPress 7.0.6, while the latest release is 7.1.2. It may still work, but try it on a staging site first.

What PHP version does Safe Report Comments need?

Safe Report Comments requires PHP 7.4 or higher. Most hosts run PHP 8.x today, so it works on any modern WordPress hosting.

When was Safe Report Comments last updated?

The latest version, 0.5.0, was released on August 20, 2026 (1 month ago).

Who makes Safe Report Comments?

Safe Report Comments is developed and maintained by Automattic.

What are the best alternatives to Safe Report Comments?

The most popular alternatives to Safe Report Comments are Akismet Anti-spam: Spam Pro… (5M+ installs), Disable Comments (1M+ installs) and Antispam Bee (700K+ installs).

Powered by PageForge

Want thousands of pages that rank like these? Build them in an afternoon.

This directory runs on the same engine as PageForge. Turn any spreadsheet, CSV or API into thousands of fast, SEO-ready WordPress pages — with schema, internal links and AI-written copy baked in.

  • CSV, Google Sheets & API data sources
  • AI content, schema & internal links per page
  • Works with Elementor, Gutenberg, Yoast & Rank Math
  • Free on WordPress.org — no credit card
Sarah is here to help!
Hi there! 👋 Need help finding what you're looking for?
Sarah
Sarah
Online & Ready to Help
Hi there! 👋 Need help finding what you're looking for?

We'll use this to continue our conversation

Just now ✓ Verified

Join 500+ SEO Pros Scaling Their Strategy

Get exclusive programmatic SEO tactics, AI content workflows, and the latest PageForge updates delivered straight to your inbox. Stay ahead of the algorithm.

We care about your data in our privacy policy.