post_comment_meta_box_thead()WP 3.0.0

Displays comments for post table header

No Hooks.

Return

Array.

Usage

post_comment_meta_box_thead( $result );
$result(array) (required)
Table header rows.

Changelog

Since 3.0.0 Introduced.

post_comment_meta_box_thead() code WP 6.4.3

function post_comment_meta_box_thead( $result ) {
	unset( $result['cb'], $result['response'] );
	return $result;
}