Title: Edit Recent Edited Posts
Author: Katsushi Kawamori
Published: <strong>03.06.2024</strong>
Last modified: 29.03.2026

---

Поиск плагинов

![](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://ru.wordpress.org/plugins/edit-recent-edited-posts/#description)
 * [Отзывы](https://ru.wordpress.org/plugins/edit-recent-edited-posts/#reviews)
 *  [Установка](https://ru.wordpress.org/plugins/edit-recent-edited-posts/#installation)
 * [Разработка](https://ru.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/),
или подпишитесь на [журнал разработки](https://plugins.trac.wordpress.org/log/edit-recent-edited-posts/)
по [RSS](https://plugins.trac.wordpress.org/log/edit-recent-edited-posts/?limit=100&mode=stop_on_copy&format=rss).

## Журнал изменений

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

 * Fix — Loading the management screen.

#### 1.00

Initial release.

## Мета

 *  Версия **1.01**
 *  Обновление: **2 месяца назад**
 *  Активных установок: **Менее 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://ru.wordpress.org/plugins/tags/admin-bar/)[edit](https://ru.wordpress.org/plugins/tags/edit/)
   [posts](https://ru.wordpress.org/plugins/tags/posts/)[recent](https://ru.wordpress.org/plugins/tags/recent/)
 *  [Дополнительно](https://ru.wordpress.org/plugins/edit-recent-edited-posts/advanced/)

## Оценки

Пока что нет ни одного отзыва.

[Your review](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/)