git-svn-id: https://192.168.0.254/svn/Proyectos.ASong2U_Web/trunk@78 cd1a4ea2-8c7f-e448-aada-19d1fee9e1d6
39 lines
1.0 KiB
PHP
39 lines
1.0 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Functions related to the BuddyPress Activity component and the WP Cache
|
|
*
|
|
* @since 1.6
|
|
*/
|
|
|
|
// Exit if accessed directly
|
|
if ( !defined( 'ABSPATH' ) ) exit;
|
|
|
|
/**
|
|
* Slurps up activitymeta
|
|
*
|
|
* This function is called in two places in the BP_Groups_Group class:
|
|
* - in the populate() method, when single group objects are populated
|
|
* - in the get() method, when multiple groups are queried
|
|
*
|
|
* It grabs all groupmeta associated with all of the groups passed in $group_ids and adds it to
|
|
* the WP cache. This improves efficiency when using groupmeta inline
|
|
*
|
|
* @param int|str|array $group_ids Accepts a single group_id, or a comma-separated list or array of
|
|
* group ids
|
|
*/
|
|
function bp_activity_update_meta_cache( $activity_ids = false ) {
|
|
global $bp;
|
|
|
|
$cache_args = array(
|
|
'object_ids' => $activity_ids,
|
|
'object_type' => $bp->activity->id,
|
|
'object_column' => 'activity_id',
|
|
'meta_table' => $bp->activity->table_name_meta,
|
|
'cache_key_prefix' => 'bp_activity_meta'
|
|
);
|
|
|
|
bp_update_meta_cache( $cache_args );
|
|
}
|
|
|
|
?>
|