Changeset 12541 for trunk/src/bp-core/bp-core-cache.php
- Timestamp:
- 01/29/2020 06:22:45 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/bp-core-cache.php
r12428 r12541 7 7 * 8 8 * @package BuddyPress 9 * @su package Cache9 * @subpackage Cache 10 10 * @since 1.5.0 11 11 */ … … 81 81 } 82 82 83 // Bail if not on the root blog 83 // Bail if not on the root blog. 84 84 if ( ! bp_is_root_blog() ) { 85 85 return; … … 88 88 $page_ids = bp_core_get_directory_page_ids( 'all' ); 89 89 90 // Bail if post ID is not a directory page 90 // Bail if post ID is not a directory page. 91 91 if ( ! in_array( $post_id, $page_ids ) ) { 92 92 return;
Note: See TracChangeset
for help on using the changeset viewer.