asp_indexing_string_post_process
apply_filters('asp_indexing_string_post_process', $str);Parameters
add_filter( 'asp_indexing_string_post_process', 'asp_change_the_string', 10, 1 );
function asp_change_the_string( $str ) {
return $str . " my text";
}Last updated