=== Edit Recent Edited Posts ===
Contributors: Katsushi Kawamori
Donate link: https://shop.riverforest-wp.info/donate/
Tags: admin bar, edit, recent, posts
Requires at least: 5.0
Requires PHP: 8.0
Tested up to: 7.0
Stable tag: 1.01
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

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

== Description ==

= 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 =
[youtube https://youtu.be/hx4PCIESnkk]

= 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
);
~~~

== Installation ==

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

== Frequently Asked Questions ==

none

== Screenshots ==

1. Admin bar view

== Changelog ==

= [1.01] 2025/04/17 =
* Fix - Loading the management screen.

= 1.00 =
Initial release.

== Upgrade Notice ==

= 1.00 =
