Summery Summery
Handles the checkbox column output.
Syntax Syntax
Parameters Parameters
- $user
-
(Required) The current WP_User object.
Source Source
File: wp-admin/includes/class-wp-ms-users-list-table.php
public function column_cb( $user ) { if ( is_super_admin( $user->ID ) ) { return; } ?> <label class="screen-reader-text" for="blog_<?php echo $user->ID; ?>"> <?php /* translators: %s: User login. */ printf( __( 'Select %s' ), $user->user_login ); ?> </label> <input type="checkbox" id="blog_<?php echo $user->ID; ?>" name="allusers[]" value="<?php echo esc_attr( $user->ID ); ?>" /> <?php }
Advertisement
Changelog Changelog
Version | Description |
---|---|
4.3.0 | Introduced. |