Leave a Reply

Your email address will not be published. Required fields are marked *

document.addEventListener( 'click', function (event) { const link = event.target.closest('.wp-block-image.no-lightbox a'); if (!link) { return; } event.preventDefault(); event.stopImmediatePropagation(); if ( link.target === '_blank' || event.metaKey || event.ctrlKey ) { window.open(link.href, '_blank', 'noopener'); } else { window.location.assign(link.href); } }, true );