Changeset 26617 for trunk/src/wp-admin/includes/dashboard.php
- Timestamp:
- 12/04/2013 05:27:34 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/dashboard.php
r26611 r26617 138 138 function wp_dashboard() { 139 139 $screen = get_current_screen(); 140 $columns = absint( $screen->get_columns() ); 141 $columns_css = ''; 142 if ( $columns ) { 143 $columns_css = " columns-$columns"; 144 } 140 145 141 146 ?> 142 <div id="dashboard-widgets" class="metabox-holder ">147 <div id="dashboard-widgets" class="metabox-holder<?php echo $columns_css; ?>"> 143 148 <div id='postbox-container-1' class='postbox-container'> 144 149 <?php do_meta_boxes( $screen->id, 'normal', '' ); ?>
Note: See TracChangeset
for help on using the changeset viewer.