How to wrap an element around an iframe or embed in content automatically?

Id like to have wordpress automatically wrap a div around any iframe or embed when they are used in the_content…how might this be achieved?

3 s
3

try jQuery

$('iframe').wrap('<div class="wrapper" />');

Leave a Comment