asp_index_cf_contents_before_tokenize
apply_filters('asp_post_custom_field_before_tokenize', $field_contents, $the_post);Parameters
Sample usage
add_filter( 'asp_post_custom_field_before_tokenize', 'asp_change_cf_index', 10, 3 );
function asp_change_cf_index( $field_contents, $post ) {
if ( $field_contents == '' ) {
return 'my custom field contents';
} else {
return $field_contents;
}
}Last updated