function led7_clean_data_attributes_on_save($text) { if (empty($text) || !is_string($text)) { return $text; } return preg_replace('/\s?data-[a-zA-Z0-9_-]+="[^"]*"/', '', $text); } add_filter('content_save_pre', 'led7_clean_data_attributes_on_save', 20); add_filter('excerpt_save_pre', 'led7_clean_data_attributes_on_save', 20);