post_comment_meta_box_thead() WordPress Function
The post_comment_meta_box_thead() function is used to display the table header for the comments meta box on the post editing screen.
post_comment_meta_box_thead( array $result ) #
Displays comments for post table header
Contents
Parameters
- $result
(array)(Required)Table header rows.
Return
(array)
Source
File: wp-admin/includes/meta-boxes.php
function post_comment_meta_box_thead( $result ) { unset( $result['cb'], $result['response'] ); return $result; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |