WP_MS_Themes_List_Table::get_columns
Gets the list of columns for the list table.
Method of the class: WP_MS_Themes_List_Table{}
No Hooks.
Returns
Array
Usage
$WP_MS_Themes_List_Table = new WP_MS_Themes_List_Table(); $WP_MS_Themes_List_Table->get_columns();
WP_MS_Themes_List_Table::get_columns() WP MS Themes List Table::get columns code WP 7.0
public function get_columns() {
$columns = array(
'cb' => '<input type="checkbox" />',
'name' => __( 'Theme' ),
'description' => __( 'Description' ),
);
if ( $this->show_autoupdates ) {
$columns['auto-updates'] = __( 'Automatic Updates' );
}
return $columns;
}