custom-javascript.js
539 Bytes
// Add your custom JS here.
jQuery( document ).ready(function($) {
$('.story-body-image').each(function(index) {
$(this).parents('.wp-block-column').attr("style", 'background-image:url('+$(this).children('img').attr('src')+');')
$(this).children('img').hide();
})
$('.story-body-image-full').each(function(index) {
$(this).parents('.wp-block-columns').attr("style", 'background-image:url('+$(this).children('img').attr('src')+');')
$(this).children('img').hide();
})
})