WP_List_Table::get_column_count
Returns the number of visible columns.
Method of the class: WP_List_Table{}
No Hooks.
Returns
Int. The number of visible columns.
Usage
$WP_List_Table = new WP_List_Table(); $WP_List_Table->get_column_count();
Changelog
| Since 3.1.0 | Introduced. |
WP_List_Table::get_column_count() WP List Table::get column count code WP 7.0
public function get_column_count() {
list ( $columns, $hidden ) = $this->get_column_info();
$hidden = array_intersect( array_keys( $columns ), array_filter( $hidden ) );
return count( $columns ) - count( $hidden );
}