clean_bookmark_cache( int $bookmark_id )
Deletes the bookmark cache.
Description Description
Parameters Parameters
- $bookmark_id
-
(int) (Required) Bookmark ID.
Source Source
File: wp-includes/bookmark.php
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' ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
2.7.0 | Introduced. |