video into a responsive container.
*/
if (!defined('ABSPATH')) exit;
// Wrap iframes in a responsive container
function airtheme_wrap_iframes($content) {
// Find any
$pattern = '~~is';
$content = preg_replace_callback($pattern, function($match) {
return '' . $match[0] . '
';
}, $content);
return $content;
}
add_filter('the_content', 'airtheme_wrap_iframes');