Guets last changued date for the specified cache group.
Parameters
-
$groupstring required -
Where the cache contens are grouped.
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.