bbp_reply_content_autoembed()
Check if autoembeds are enabled and hook them in if so
Description Description
Source Source
File: includes/replies/functions.php
function bbp_reply_content_autoembed() {
global $wp_embed;
if ( bbp_use_autoembed() && is_a( $wp_embed, 'WP_Embed' ) ) {
add_filter( 'bbp_get_reply_content', array( $wp_embed, 'autoembed' ), 2 );
}
}
Changelog Changelog
| Version | Description |
|---|---|
| 2.1.0 | Introduced. |