WP_Links_List_Table::column_cb( object $link )
Handles the checkbox column output.
Parameters
- $link
-
(object) (Required) The current link object.
Source
File: wp-admin/includes/class-wp-links-list-table.php
public function column_cb( $link ) {
?>
<label class="screen-reader-text" for="cb-select-<?php echo $link->link_id; ?>">
<?php
/* translators: %s: Link name. */
printf( __( 'Select %s' ), $link->link_name );
?>
</label>
<input type="checkbox" name="linkcheck[]" id="cb-select-<?php echo $link->link_id; ?>" value="<?php echo esc_attr( $link->link_id ); ?>" />
<?php
} Changelog
| Version | Description |
|---|---|
| 4.3.0 | Introduced. |
© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_links_list_table/column_cb