WP_Post_Comments_List_Table::get_table_classes() WordPress Method
The WP_Post_Comments_List_Table::get_table_classes() method is used to get the CSS classes for the comments list table.
WP_Post_Comments_List_Table::get_table_classes() #
Return
(array)
Source
File: wp-admin/includes/class-wp-post-comments-list-table.php
protected function get_table_classes() {
$classes = parent::get_table_classes();
$classes[] = 'wp-list-table';
$classes[] = 'comments-box';
return $classes;
}
Expand full source codeCollapse full source codeView on TracView on GitHub