To edit the Accordion URL, copy the following code to the theme function.php
file.
add_filter('accordions_edit_url', 'accordions_edit_url_18032020', 10, 2); function accordions_edit_url_18032020($link, $post_id){ $link = $link . '&custom_parm=hello'; return $link; }