Filters for shortcode settings
Parameters
- attributes – array with settings
Usage
<?php
function change_shortcode_settings ( $atts ) {
//your code here
return $atts;
}
add_filter( 'berocket_aapf_shortcode_options', 'change_shortcode_settings' );
?>