函数原型
post_comment_meta_box_thead( array $result ): array
函数描述
Displays comments for post table header
是否弃用
未弃用
函数参数
-
$result
array
Required - Table header rows.
函数返回值
array
函数位置
File: wp-admin/includes/meta-boxes.php.
函数源码
function post_comment_meta_box_thead( $result ) {
unset( $result['cb'], $result['response'] );
return $result;
}
源码链接
变更日志
| Version | Description |
|---|---|
| 3.0.0 | Introduced. |

