post_comment_meta_box_thead()
Displays comments for post table header
No Hooks.
Returns
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() post comment meta box thead code WP 6.9
function post_comment_meta_box_thead( $result ) {
unset( $result['cb'], $result['response'] );
return $result;
}