Report Post is a highly customizable plugin that lets your visitors 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:
Plugin handles 4 class names. Two pre-defined (.zeno-report-post-link for a simple link with exclamation mark icon and .zeno-report-post-button for button)
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.
<div class="zeno-report-post-link">
<a href="#" name="zeno-report-post-link"
class="zeno-report-post-link zeno-report-post-link-frontend"
data-zeno_report_post-post-id="<?php echo (int) $post->ID; ?>"
data-zeno_report_post-post-title="<?php echo esc_attr($post->post_title); ?>">
Report this Post
</a>
</div>';