wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes
clean_comment_cache › WordPress Function
Depuis2.3.0
Dépréciéen/a
› clean_comment_cache ( $ids )
Paramètres: |
|
Défini(e) dans: |
|
Codex: |
Removes a comment from the object cache.
Fonctions en relation: clean_attachment_cache, clean_post_cache, update_comment_cache, _prime_comment_caches, clean_page_cache
Source
function clean_comment_cache( $ids ) { $comment_ids = (array) $ids; wp_cache_delete_multiple( $comment_ids, 'comment' ); foreach ( $comment_ids as $id ) { /** * 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_comments_last_changed(); }