diff --git src/wp-admin/includes/template.php src/wp-admin/includes/template.php
index 56417ba..276a7db 100644
|
|
function do_settings_fields($page, $section) { |
1287 | 1287 | return; |
1288 | 1288 | |
1289 | 1289 | foreach ( (array) $wp_settings_fields[$page][$section] as $field ) { |
1290 | | echo '<tr>'; |
| 1290 | echo !empty($field['args']['class']) ? '<tr class="' . esc_attr( $field['args']['class'] ) . '">': '<tr>'; |
1291 | 1291 | if ( !empty($field['args']['label_for']) ) |
1292 | 1292 | echo '<th scope="row"><label for="' . esc_attr( $field['args']['label_for'] ) . '">' . $field['title'] . '</label></th>'; |
1293 | 1293 | else |