WP Report Post

Adds functionality to report inappropriate post or page

Author:Alex Raven (profile at wordpress.org)
WordPress version required:3.0.1
WordPress version tested:5.2.3
Plugin version:2.1.2
Added to WordPress repository:16-02-2014
Last updated:26-09-2019
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
Rating, %:98
Rated by:9
Plugin URI:http://www.esiteq.com/projects/wordpress-repo...
Total downloads:17 424
Active installs:900+
plugin download
Click to start download

Report Post is a highly customizable plugin that lets your visitors to report posts or pages with inappropriate content. All these reports are displayed as a table in your Administrator section so you can decide what to do next: edit contents, unpublish posts/pages, or just delete these reports. The plugin was designed to work in both automatic and manual modes. In automatic mode, the link to report will be added to post’s meta box. In manual mode, you can place the link, button or image anywhere you want in templates.

Features:

  • Easy to use – you can simply activate the plugin and it will do the thing
  • Highly customizable via Options and CSS
  • AJAX based – no page reload will occur
  • Can be used in Automatic and Manual modes (to use in templates)
  • Works for Posts, Pages and Custom post types
  • Supports AJAXly loaded posts, ‘infinite scroll’ posts, etc.
  • Does not use additional databases / tables anymore. All reports are stored in postmeta.
  • Modal window instead of expandable form (works with AJAXly loaded posts!)
  • Bulk Unpublish, Publish, Delete Posts, Delete Reports
  • All texts displayed in front end are customizable via Options
  • Admin notification about reported posts
  • Can use Captcha to protect from spam

Plugin demo: www.esiteq.com/projects/wordpress-report-post-plugin/

Usage

Plugin handles 4 class names. Two pre-defined (.report-post-link for a simple link with exclamation mark icon and .report-post-button for button)
and two custom that you can define yourself (.report-post-custom-link and .report-post-custom-button, respectively).

To work correctly, report link must be placed inside of an

<

article> tag. Article tag must have id=”post-XXXX”, where XXXX is the id of current post. If your theme does not use

<

article> tags, you can add post-id=”XXXX” attribute to report link, e.g.

<a href="#" post-id="<?php echo $post->ID; ?>" class="report-post-link">Report Inappropriate Post</a>