/**
* Preprocess function for theme_field().
*/
function THEMENAME_preprocess_field(&$variables) {
if (in_array($variables['element']['#field_name'], array('field_price', 'field_count'))) {
$variables['theme_hook_suggestions'][] = 'field__clean';
}
}Drupal 7