WP_Links_List_Table::column_cb( object $item )
Handles the checkbox column output.
Parameters
- $item
-
(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 echo sprintf( __( '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 |
---|---|
5.9.0 | Renamed $link to $item to match parent class for PHP 8 named parameter support. |
4.3.0 | Introduced. |