post_comment_meta_box_thead()WP 3.0.0

Displays comments for post table header

Хуков нет.

Возвращает

Массив.

Использование

post_comment_meta_box_thead( $result );
$result(массив) (обязательный)
Table header rows.

Список изменений

С версии 3.0.0 Введена.

Код post_comment_meta_box_thead() WP 6.5.2

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