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



clean_bookmark_cache › WordPress Function

Seit2.7.0
Veraltetn/v
clean_bookmark_cache ( $bookmark_id )
Parameter:
  • (int) $bookmark_id Bookmark ID.
    Erforderlich: Ja
Definiert in:
Codex:

Deletes the bookmark cache.



Quellcode

function clean_bookmark_cache( $bookmark_id ) {
	wp_cache_delete( $bookmark_id, 'bookmark' );
	wp_cache_delete( 'get_bookmarks', 'bookmark' );
	clean_object_term_cache( $bookmark_id, 'link' );
}