update_recently_edited()WP 1.5.0

Updates the "recently-edited" file for the plugin or theme file editor.

No Hooks.

Return

null. Nothing (null).

Usage

update_recently_edited( $file );
$file(string) (required)
-

Changelog

Since 1.5.0 Introduced.

update_recently_edited() code WP 6.5.2

function update_recently_edited( $file ) {
	$oldfiles = (array) get_option( 'recently_edited' );

	if ( $oldfiles ) {
		$oldfiles   = array_reverse( $oldfiles );
		$oldfiles[] = $file;
		$oldfiles   = array_reverse( $oldfiles );
		$oldfiles   = array_unique( $oldfiles );

		if ( 5 < count( $oldfiles ) ) {
			array_pop( $oldfiles );
		}
	} else {
		$oldfiles[] = $file;
	}

	update_option( 'recently_edited', $oldfiles );
}