W3cubDocs

/WordPress

WP_List_Table::get_table_classes()

Gets a list of CSS classes for the WP_List_Table table tag.

Return

(string[]) Array of CSS classes for the table tag.

Source

File: wp-admin/includes/class-wp-list-table.php

protected function get_table_classes() {
		$mode = get_user_setting( 'posts_list_mode', 'list' );

		$mode_class = esc_attr( 'table-view-' . $mode );

		return array( 'widefat', 'fixed', 'striped', $mode_class, $this->_args['plural'] );
	}

Changelog

Version Description
3.1.0 Introduced.

© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_list_table/get_table_classes