WP_Links_List_Table::column_cb( object $item )

Handles the checkbox column output.


Parameters

$item object Required
The current link object.

Top ↑

Source

File: wp-admin/includes/class-wp-links-list-table.php. View all references

public function column_cb( $item ) {
	// Restores the more descriptive, specific name for use within this method.
	$link = $item;

	?>
	<label class="screen-reader-text" for="cb-select-<?php echo $link->link_id; ?>">
		<?php
		/* translators: Hidden accessibility text. %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
}


Top ↑

Changelog

Changelog
Version Description
5.9.0 Renamed $link to $item to match parent class for PHP 8 named parameter support.
4.3.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.