asp_post_content_before_tokenize_clear
apply_filters('asp_post_content_before_tokenize_clear', $content, $post);Parameters
add_filter( 'asp_post_content_before_tokenize_clear', 'asp_change_post_content_index', 10, 2 );
function asp_change_post_content_index( $content, $post ) {
return $content. " my text";
}Last updated