Title: Edit Recent Edited Posts
Author: Katsushi Kawamori
Published: <strong>2024 年 6 月 3 日</strong>
Last modified: 2026 年 3 月 29 日

---

搜索插件

![](https://ps.w.org/edit-recent-edited-posts/assets/icon-256x256.png?rev=3096696)

# Edit Recent Edited Posts

 作者：[Katsushi Kawamori](https://profiles.wordpress.org/katsushi-kawamori/)

[下载](https://downloads.wordpress.org/plugin/edit-recent-edited-posts.1.01.zip)

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

 [支持](https://wordpress.org/support/plugin/edit-recent-edited-posts/)

## 描述

#### Displays a link to the recent edited posts in the admin bar, where you can edit it.

 * Showing 5 posts edited within the last 3 days.
 * Support Post, Pages, Media and Custom Posts.
 * Can change various settings using the filter hooks below.

#### How it works

#### Filter hooks

    ```
    /** ==================================================
     * Filter for capability.
     *
     */
    add_filter( 'edit_recent_edited_posts_user_can',
        function() {
            return 'edit_published_posts';
        },
        10,
        1
    );
    ```

    ```
    /** ==================================================
     * Filter for period to be displayed.
     *
     */
    add_filter(
        'edit_recent_edited_posts_days',
        function() {
            return 30;
        },
        10,
        1
    );
    ```

    ```
    /** ==================================================
     * Filter for user ID of the post to be displayed.
     *
     */
    add_filter(
        'edit_recent_edited_posts_author_ids',
        function() {
            $user_ids = array();
            $user_ids[] = get_current_user_id();
            return $user_ids;
        },
        10,
        1
    );
    ```

    ```
    /** ==================================================
     * Filter for displayed results.
     *
     */
    add_filter(
        'edit_recent_edited_posts_items',
        function() {
            return 10;
        },
        10,
        1
    );
    ```

    ```
    /** ==================================================
     * Filter for display order.
     *
     */
    add_filter(
        'edit_recent_edited_posts_order',
        function() {
            return 'ASC';
        },
        10,
        1
    );
    ```

    ```
    /** ==================================================
     * Filter for type of posting date and time.
     *
     */
    add_filter(
        'edit_recent_edited_posts_orderby',
        function() {
            return 'post_date';
        },
        10,
        1
    );
    ```

## 屏幕截图

 * [[
 * Admin bar view

## 安装

 1. Upload `edit-recent-edited-posts` directory to the `/wp-content/plugins/` directory
 2. Activate the plugin through the ‘Plugins’ menu in WordPress

## 常见问题

none

## 评价

此插件暂无评价。

## 贡献者及开发者

「Edit Recent Edited Posts」是开源软件。 以下人员对此插件做出了贡献。

贡献者

 *   [ Katsushi Kawamori ](https://profiles.wordpress.org/katsushi-kawamori/)

「Edit Recent Edited Posts」插件已被翻译至 1 种本地化语言。 感谢[所有译者](https://translate.wordpress.org/projects/wp-plugins/edit-recent-edited-posts/contributors)
为本插件所做的贡献。

[帮助将「Edit Recent Edited Posts」翻译成简体中文。](https://translate.wordpress.org/projects/wp-plugins/edit-recent-edited-posts)

### 对开发感兴趣吗?

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

## 更新日志

#### [1.01] 2025/04/17

 * Fix – Loading the management screen.

#### 1.00

Initial release.

## 额外信息

 *  版本 **1.01**
 *  最后更新：**6 天前**
 *  活跃安装数量 **不到10**
 *  WordPress 版本 ** 5.0 或更高版本 **
 *  已测试的最高版本为 **7.0**
 *  PHP 版本 ** 8.0 或更高版本 **
 *  语言
 * [English (US)](https://wordpress.org/plugins/edit-recent-edited-posts/) 和 [Japanese](https://ja.wordpress.org/plugins/edit-recent-edited-posts/).
 *  [翻译成简体中文](https://translate.wordpress.org/projects/wp-plugins/edit-recent-edited-posts)
 * 标签
 * [admin bar](https://cn.wordpress.org/plugins/tags/admin-bar/)[edit](https://cn.wordpress.org/plugins/tags/edit/)
   [posts](https://cn.wordpress.org/plugins/tags/posts/)[recent](https://cn.wordpress.org/plugins/tags/recent/)
 *  [高级视图](https://cn.wordpress.org/plugins/edit-recent-edited-posts/advanced/)

## 评级

尚未提交反馈。

[添加我的评价](https://wordpress.org/support/plugin/edit-recent-edited-posts/reviews/#new-post)

[查看全部评论](https://wordpress.org/support/plugin/edit-recent-edited-posts/reviews/)

## 贡献者

 *   [ Katsushi Kawamori ](https://profiles.wordpress.org/katsushi-kawamori/)

## 支持

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

 [查看支持论坛](https://wordpress.org/support/plugin/edit-recent-edited-posts/)

## 捐助

您愿意支持这个插件的发展吗?

 [ 捐助此插件 ](https://shop.riverforest-wp.info/donate/)