getdave / Tanlinell

Boilerplate Wordpress theme for rapid development of new WP themes. Based on the great work of the _s ("Underscore") theme.
GNU General Public License v2.0
6 stars 2 forks source link

PHP Gravity Forms classes #295

Closed getdave closed 10 years ago

getdave commented 10 years ago

Add ability to have a sanitised version of the label as a class on the field. Same as for Energist.

@neilberry001 you asked me to put this in the ticket

/**
 * Append the form label to the class for all forms 
 */
function tanlinell_custom_field_class ( $classes, $field, $form ) {

    $classes .= " " . sanitize_title($field['label']);

    return $classes;
}
add_action( 'gform_field_css_class', 'tanlinell_custom_field_class', 10, 3 );