Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Created February 26, 2021 11:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save plugin-republic/222ce71cfec2f355bb5a11380b064e09 to your computer and use it in GitHub Desktop.
Save plugin-republic/222ce71cfec2f355bb5a11380b064e09 to your computer and use it in GitHub Desktop.
<?php
/**
* Toggle accordion closed when one is opened
*/
function prefix_toggle_accordion_closed( $toggle, $post_id ) {
return 'yes';
}
add_filter( 'pewc_close_accordion', 'prefix_toggle_accordion_closed', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment