wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_cache_get_last_changed › WordPress Function

Since4.7.0
Deprecatedn/a
wp_cache_get_last_changed ( $group )
Parameters:
  • (string) $group Where the cache contents are grouped.
    Required: Yes
Returns:
  • (string) UNIX timestamp with microseconds representing when the group was last changed.
Defined at:
Codex:

Gets last changed date for the specified cache group.



Source

function wp_cache_get_last_changed( $group ) {
	$last_changed = wp_cache_get( 'last_changed', $group );

	if ( $last_changed ) {
		return $last_changed;
	}

	return wp_cache_set_last_changed( $group );
}