Title: Zeno Report Post
Author: Marcel Pol
Published: <strong>2025 年 7 月 20 日</strong>
Last modified: 2026 年 1 月 10 日

---

搜索插件

![](https://ps.w.org/zeno-report-post/assets/icon-256x256.png?rev=3330824)

# Zeno Report Post

 作者：[Marcel Pol](https://profiles.wordpress.org/mpol/)

[下载](https://downloads.wordpress.org/plugin/zeno-report-post.3.2.0.zip)

 * [详情](https://cn.wordpress.org/plugins/zeno-report-post/#description)
 * [评价](https://cn.wordpress.org/plugins/zeno-report-post/#reviews)
 *  [安装](https://cn.wordpress.org/plugins/zeno-report-post/#installation)
 * [开发进展](https://cn.wordpress.org/plugins/zeno-report-post/#developers)

 [支持](https://wordpress.org/support/plugin/zeno-report-post/)

## 描述

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:

 * 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. All reports are stored in postmeta.
 * Modal window instead of expandable form (works with AJAXly loaded posts!)
 * Bulk Unpublish, Publish, Delete Posts, Delete Reports
 * Admin notification about reported posts
 * Optional spamfilter to protect from spam

### Usage

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>';
    ```

## 安装

 1. Upload the plugin files to the `/wp-content/plugins/wp-report-post` directory, 
    or install the plugin through the WordPress plugins screen directly.
 2. Activate the plugin through the ‘Plugins’ screen in WordPress
 3. Enjoy 🙂

## 评价

此插件暂无评价。

## 贡献者及开发者

「Zeno Report Post」是开源软件。 以下人员对此插件做出了贡献。

贡献者

 *   [ Marcel Pol ](https://profiles.wordpress.org/mpol/)
 *   [ Alex Raven ](https://profiles.wordpress.org/esiteq/)

「Zeno Report Post」插件已被翻译至 2 种本地化语言。 感谢[所有译者](https://translate.wordpress.org/projects/wp-plugins/zeno-report-post/contributors)
为本插件所做的贡献。

[帮助将「Zeno Report Post」翻译成简体中文。](https://translate.wordpress.org/projects/wp-plugins/zeno-report-post)

### 对开发感兴趣吗?

您可以[浏览代码](https://plugins.trac.wordpress.org/browser/zeno-report-post/)，
查看[SVN仓库](https://plugins.svn.wordpress.org/zeno-report-post/)，或通过[RSS](https://plugins.trac.wordpress.org/log/zeno-report-post/?limit=100&mode=stop_on_copy&format=rss)
订阅[开发日志](https://plugins.trac.wordpress.org/log/zeno-report-post/)。

## 更新日志

#### 3.2.0

 * 2025-10-29
 * Add setting for post types.
 * Fix uninstall for options.
 * Set autoload explicitly for options.

#### 3.1.0

 * 2025-08-01
 * Use add_filter instead of add_action for ‘the_content’ filter.
 * Only add modal to our own reported posts dashboard page.
 * Add dropdowns for subscribing and unsubscribing moderators.
 * Remove email option for single moderator.
 * Use wp_footer action for adding the modal.
 * Remove Delete Post in dashboard.
 * Fix Unpublish Post in dashboard.
 * Fix Delete Reports in dashboard.
 * Verify Nonces on dashboard page for reported posts.

#### 3.0.1

 * 2025-07-20
 * Sanitize more output.
 * Verify Nonces correctly.
 * Use wp_json_encode instead of json_encode.
 * Use plugin_dir_path instead of WP_PLUGIN_DIR.
 * Fix text-domain in 1 string.
 * Rename zrp prefix to zeno_report_post.
 * Use rest_sanitize_boolean for booelean settings.
 * Fix CSS transitions.

#### 3.0.0

 * 2025-07-07
 * Forked into Zeno Report Comments.
 * Rewrite classes into standalone functions.
 * Only load admin code on dashboard, not on frontend.
 * Remove function to import old options from wp-report-post plugin.
 * Remove reCAPTCHA.
 * Add spamfilter.
 * Add IP blocklist.
 * Remove remodal JavaScript, use our own modal.
 * After removing reports, set the post as moderated.

#### 2.1.2

 * Bug fixed: duplicate reports were sent to administrator

#### 2.1.1

 * Bug fixed: not expanding report when clicking user name in admin section

#### 2.1.0

 * Email notifications added
 * IP Logging added
 * reCaptcha added

#### 2.0.2

 * Added report date in two formats: Human (e.g 3 minutes ago) and Date / Time

#### 2.0.1

 * Fixed posts per page in admin section, set to 25
 * Added import of reports created by version 0.X

#### 2.0

 * Completely remastered. Well, this is not an update of previous version of the
   plugin. This is a new plugin written from scratch.

#### 0.2.4

 * Fixed bug with incorrect link to attached image

#### 0.2.2

 * Fixed bug with duplicate reports

#### 0.2.1

 * Removed engine and encoding from CREATE TABLE query – default values will be 
   used (in case if InnoDB is not supported on your hosting)

#### 0.2

 * Perverted AJAX calls were replaced in a normal WordPress way
 * Added email notifications for reported posts
 * Compatible with WordPress 3.8.x and new themes
 * Multiple minor bugfixes

#### 0.1

 * CSS buttons added
 * Fixed textarea width

## 额外信息

 *  版本 **3.2.0**
 *  最后更新：**5 月前**
 *  活跃安装数量 **10+**
 *  WordPress 版本 ** 6.0 或更高版本 **
 *  已测试的最高版本为 **6.9.4**
 *  PHP 版本 ** 7.4 或更高版本 **
 *  语言
 * [Dutch](https://nl.wordpress.org/plugins/zeno-report-post/) 、 [Dutch (Belgium)](https://nl-be.wordpress.org/plugins/zeno-report-post/)
   和 [English (US)](https://wordpress.org/plugins/zeno-report-post/).
 *  [翻译成简体中文](https://translate.wordpress.org/projects/wp-plugins/zeno-report-post)
 * 标签
 * [page](https://cn.wordpress.org/plugins/tags/page/)[post](https://cn.wordpress.org/plugins/tags/post/)
   [report](https://cn.wordpress.org/plugins/tags/report/)[report post](https://cn.wordpress.org/plugins/tags/report-post/)
 *  [高级视图](https://cn.wordpress.org/plugins/zeno-report-post/advanced/)

## 评级

尚未提交反馈。

[Your review](https://wordpress.org/support/plugin/zeno-report-post/reviews/#new-post)

[查看全部评论](https://wordpress.org/support/plugin/zeno-report-post/reviews/)

## 贡献者

 *   [ Marcel Pol ](https://profiles.wordpress.org/mpol/)
 *   [ Alex Raven ](https://profiles.wordpress.org/esiteq/)

## 支持

有话要说吗？是否需要帮助？

 [查看支持论坛](https://wordpress.org/support/plugin/zeno-report-post/)