Skip to content

Instantly share code, notes, and snippets.

@besimhu
Created March 15, 2015 15:58
Show Gist options
  • Save besimhu/538cc5ce1f0b028876a6 to your computer and use it in GitHub Desktop.
Save besimhu/538cc5ce1f0b028876a6 to your computer and use it in GitHub Desktop.
Add custom selectors to Gravity Forms
// Add custom selectors to Gravity Forms
add_action("gform_field_css_class", "custom_class", 10, 3);
function custom_class($classes, $field, $form){
$classes .= " " . $field["type"];
return $classes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment