wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
clean_comment_cache › WordPress Function
Seit2.3.0
Veraltetn/v
› clean_comment_cache ( $ids )
Parameter: |
|
Definiert in: |
|
Codex: |
Removes a comment from the object cache.
Ähnliche Funktionen: clean_attachment_cache, clean_post_cache, update_comment_cache, _prime_comment_caches, clean_blog_cache
Quellcode
function clean_comment_cache( $ids ) { foreach ( (array) $ids as $id ) { wp_cache_delete( $id, 'comment' ); /** * Fires immediately after a comment has been removed from the object cache. * * @since 4.5.0 * * @param int $id Comment ID. */ do_action( 'clean_comment_cache', $id ); } wp_cache_set( 'last_changed', microtime(), 'comment' ); }