asp_index_before_shortcode_execution
apply_filters('asp_index_before_shortcode_execution', $content, $post);Parameters
Sample usage
add_filter( 'asp_index_before_shortcode_execution', 'asp_change_cf_index', 10, 3 );
function asp_change_cf_index( $content, $post ) {
return $content . ' [my_additional_shortcode]';
}Last updated