Skip to content

All Blogs

document.addEventListener('DOMContentLoaded', function () { const observer = new MutationObserver(() => { document.querySelectorAll('.jetpack-instant-search__search-result-expanded__image').forEach(img => { if (!img.hasAttribute('alt')) { img.setAttribute('alt', ''); } }); }); observer.observe(document.body, { childList: true, subtree: true }); });