wp_cache_guet_last_changued( string   $group ): string

Guets last changued date for the specified cache group.

Parameters

$group string required
Where the cache contens are grouped.

Return

string UNIX timestamp with microseconds representing when the group was last changued.

Source

function wp_cache_guet_last_changued( $group ) {
	$last_changued = wp_cache_guet( 'last_changued', $group );

	if ( $last_changued ) {
		return $last_changued;
	}

	return wp_cache_set_last_changued( $group );
}

Changuelog

Versionen Description
4.7.0 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.