显示帖子表头的注释
原型
post_comment_meta_box_thead( array $result )
参数
$result
(array)
(Required)
表头行
返回值
(array)
源文件
路径:wp-admin/includes/meta-boxes.php
<?php
...
function post_comment_meta_box_thead($result) {
unset($result['cb'], $result['response']);
return $result;
}
...
?>
其他
英文文档:https://developer.wordpress.org/reference/functions/post_comment_meta_box_thead/