function theme_wp_footer() {
?>
;(function($) {
$(function() {
$(‘.elementor-accordion-title’).each(function() {
$(this).removeClass(‘active’).next(‘.elementor-accordion-content’).hide();
});
});
})(jQuery);
<?php
}
add_action(‘wp_footer’, ‘theme_wp_footer’, PHP_INT_MAX);