This code automatically adds YouTube videos by adding a link to a theme.
How do I make the code do the same for this site? https://www.vbox7.com/
How do I make the code do the same for this site? https://www.vbox7.com/
- Code:
$(function () {
// Auto youtube transform
// Hancki - FdF
$('.post-entry a, .postbody .content a, .postbody a').html(function (i, html) {
return html.replace(/(?:https:\/\/)?(?:http:\/\/)?(?:www\.)?(?:youtube\.com|youtu\.be)\/(?:watch\?v=)?(.+)/g, '<iframe width="420" height="345" src="http://www.youtube.com/embed/$1" frameborder="0" allowfullscreen></iframe>');
});
});
Last edited by smurfavr on June 16th 2017, 11:00 am; edited 1 time in total