bp_activity_comment_embed()
Set up activity oEmbed cache while recursing through activity comments.
Description
While crawling through an activity comment tree (bp_activity_recurse_comments), this function sets up the hooks necessary to grab each comment’s embeds from the cache, or put them in the cache if they are not there yet.
See also
Source
File: bp-activity/bp-activity-functions.php
function bp_activity_comment_embed() { add_filter( 'embed_post_id', 'bp_get_activity_comment_id' ); add_filter( 'bp_embed_get_cache', 'bp_embed_activity_cache', 10, 3 ); add_action( 'bp_embed_update_cache', 'bp_embed_activity_save_cache', 10, 3 ); }
Changelog
Version | Description |
---|---|
BuddyPress 1.5.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.