- Timestamp:
- 09/18/2015 03:57:47 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-ms-sites-list-table.php
r33848 r34289 201 201 $sites_columns = array( 202 202 'cb' => '<input type="checkbox" />', 203 'id' => __( 'ID' ), 203 204 'blogname' => __( 'URL' ), 204 205 'lastupdated' => __( 'Last Updated' ), … … 250 251 <input type="checkbox" id="blog_<?php echo $blog['blog_id'] ?>" name="allblogs[]" value="<?php echo esc_attr( $blog['blog_id'] ) ?>" /> 251 252 <?php endif; 253 } 254 255 /** 256 * Handles the ID column output. 257 * 258 * @since 4.4.0 259 * @access public 260 * 261 * @param array $blog Current site. 262 */ 263 public function column_id( $blog ) { 264 echo $blog['blog_id']; 252 265 } 253 266
Note: See TracChangeset
for help on using the changeset viewer.