Changeset 5774 for trunk/src/includes/core/actions.php
- Timestamp:
- 05/21/2015 08:50:34 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/core/actions.php
r5770 r5774 295 295 add_action( 'bbp_new_reply_post_extras', 'bbp_clean_post_cache' ); 296 296 297 // Clean caches on deleted/spammed/unspammed/trashed/untrashed actions 298 add_action( 'bbp_approved_reply', 'bbp_clean_post_cache', 999 ); 299 add_action( 'bbp_approved_topic', 'bbp_clean_post_cache', 999 ); 300 add_action( 'bbp_deleted_reply', 'bbp_clean_post_cache', 999 ); 301 add_action( 'bbp_deleted_topic', 'bbp_clean_post_cache', 999 ); 302 add_action( 'bbp_spammed_reply', 'bbp_clean_post_cache', 999 ); 303 add_action( 'bbp_spammed_topic', 'bbp_clean_post_cache', 999 ); 304 add_action( 'bbp_trashed_reply', 'bbp_clean_post_cache', 999 ); 305 add_action( 'bbp_trashed_topic', 'bbp_clean_post_cache', 999 ); 306 add_action( 'bbp_unapproved_reply', 'bbp_clean_post_cache', 999 ); 307 add_action( 'bbp_unapproved_topic', 'bbp_clean_post_cache', 999 ); 308 add_action( 'bbp_unspammed_reply', 'bbp_clean_post_cache', 999 ); 309 add_action( 'bbp_unspammed_topic', 'bbp_clean_post_cache', 999 ); 310 add_action( 'bbp_untrashed_reply', 'bbp_clean_post_cache', 999 ); 311 add_action( 'bbp_untrashed_topic', 'bbp_clean_post_cache', 999 ); 297 // Clean bbPress post caches when WordPress's is cleaned 298 add_action( 'clean_post_cache', 'bbp_clean_post_cache' ); 312 299 313 300 /**
Note: See TracChangeset
for help on using the changeset viewer.