W3cubDocs

/WordPress

WP_Comments_List_Table::column_cb( WP_Comment $item )

Parameters

$itemWP_Commentrequired
The comment object.

Source

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

	if ( $this->user_can ) {
		?>
	<input id="cb-select-<?php echo $comment->comment_ID; ?>" type="checkbox" name="delete_comments[]" value="<?php echo $comment->comment_ID; ?>" />
	<label for="cb-select-<?php echo $comment->comment_ID; ?>">
		<span class="screen-reader-text">
		<?php
		/* translators: Hidden accessibility text. */
		_e( 'Select comment' );
		?>
		</span>
	</label>
		<?php
	}
}

Changelog

Version Description
5.9.0 Introduced.

© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_comments_list_table/column_cb