single_post_title, $oembed->title
single_post_title, $oembed->title
Appears in: buddypress.14.5.2
Hook Type: filter
Displaying hooks found in version: buddypress.14.5.2apply_filters('single_post_title, $oembed->title') is found 1 times:
- /bp-activity/bp-activity-embeds.php line 282
$content = sprintf( '<div class="thumb" style="max-width:%1$spx">%2$s<a href="%3$s" rel="nofollow" onclick="top.location.href=\'%3$s\'"><img loading="lazy" src="%4$s" alt="" /></a></div>', $thumb_width, $play_icon, esc_url( $url ), esc_url( $thumbnail ) ); // Show title. if ( isset( $oembed->title ) ) { $caption .= sprintf( '<p class="caption-title"><strong>%s</strong></p>', apply_filters( 'single_post_title', $oembed->title ) ); } // Show description (non-oEmbed standard). if ( isset( $oembed->description ) ) { $caption .= sprintf( '<div class="caption-description">%s</div>', apply_filters( 'bp_activity_get_embed_excerpt', $oembed->description ) ); }