Changeset 10108 for trunk/src/bp-core/bp-core-cache.php
- Timestamp:
- 09/13/2015 02:02:56 AM (11 years ago)
- File:
-
- 1 edited
-
trunk/src/bp-core/bp-core-cache.php (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/bp-core-cache.php
r10039 r10108 9 9 */ 10 10 11 // Exit if accessed directly 11 // Exit if accessed directly. 12 12 defined( 'ABSPATH' ) || exit; 13 13 … … 30 30 * Fires before the pruning of WP Super Cache. 31 31 * 32 * @since BuddyPress (1.0.0)32 * @since 1.0.0 33 33 */ 34 34 do_action( 'bp_core_clear_cache' ); … … 62 62 * Clear the directory_pages cache when one of the pages is updated. 63 63 * 64 * @since BuddyPress (2.0.0)64 * @since 2.0.0 65 65 * 66 66 * @param int $post_id ID of the page that was saved. … … 89 89 * Clear the directory_pages cache when the bp-pages option is updated. 90 90 * 91 * @since BuddyPress (2.0.0)91 * @since 2.0.0 92 92 * 93 93 * @param string $option Option name. … … 103 103 * Clear the root_blog_options cache when any of its options are updated. 104 104 * 105 * @since BuddyPress (2.0.0)105 * @since 2.0.0 106 106 * 107 107 * @param string $option Option name. … … 130 130 * Determine which items from a list do not have cached values. 131 131 * 132 * @since BuddyPress (2.0.0)132 * @since 2.0.0 133 133 * 134 134 * @param array $item_ids ID list. … … 159 159 * in the context of template loops. 160 160 * 161 * @since BuddyPress (1.6.0)161 * @since 1.6.0 162 162 * 163 163 * @global object $wpdb WordPress database object for queries..
Note: See TracChangeset
for help on using the changeset viewer.