wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_cache_get_last_changed › WordPress Function

Seit4.7.0
Veraltetn/v
wp_cache_get_last_changed ( $group )
Parameter:
  • (string) $group Where the cache contents are grouped.
    Erforderlich: Ja
Gibt zurück:
  • (string) UNIX timestamp with microseconds representing when the group was last changed.
Definiert in:
Codex:

Gets last changed date for the specified cache group.



Quellcode

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 );
}