plugin-icon

Edit Recent Edited Posts

投稿者: Katsushi Kawamori·
管理バーに最近編集した投稿へのリンクが表示され、編集できるようになります。
バージョン
1.01
最終更新日時
Nov 25, 2025

管理バーに最近編集した投稿へのリンクが表示され、編集できるようになります。

  • 過去3日以内に編集された5つの投稿を表示します。
  • 投稿、固定ページ、メディア、カスタム投稿に対応。
  • 以下のフィルターフックを使って様々な設定を変更できます。

使い方

フィルターフック

/** ================================================== * 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
このプラグインをダウンロードして、 サイトに使用できます。