plugin-icon

Edit Recent Edited Posts

제작자: Katsushi Kawamori·
Displays a link to the recent edited posts in the admin bar, where you can edit it.
버전
1.01
최근 업데이트일
Nov 25, 2025

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 );
무료Business 요금제에서
설치하면 WordPress.com 서비스 약관서드파티 플러그인 약관에 동의하게 됩니다.
테스트된 버전
WordPress 6.9
이 플러그인은 다운로드할 수 있으며 에서 사용할 수 있습니다.