Skip to content

Instantly share code, notes, and snippets.

View thesmart's full-sized avatar

John Smart thesmart

View GitHub Profile
@thesmart
thesmart / wordpress-accordion-open-all.js
Last active November 15, 2024 00:17
Opens all accordion content sections on a wordpress site.
const contentWrappers = document.querySelectorAll('.wp-block-getwid-accordion__content-wrapper');
contentWrappers.forEach((wrapper) => {
wrapper.style.display = 'block';
wrapper.style.height = 'auto';
wrapper.ariaHidden = undefined;
wrapper.inert = false;
});