';
return apply_filters('embed_brainshark', $html, $matches, $attr, $url, $rawattr );
}
/**
* Acts on awpcp-ad-details filter to add oEmbed support
*/
public function oembed($content) {
global $wp_embed;
$usecache = $wp_embed->usecache;
$wp_embed->usecache = false;
$content = $wp_embed->run_shortcode($content);
$content = $wp_embed->autoembed($content);
$wp_embed->usecache = $usecache;
return $content;
}
}