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


Parameters

$result

(array)(Required)Table header rows.


Top ↑

Return

(array)


Top ↑

Source

File: wp-admin/includes/meta-boxes.php

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

Top ↑

Changelog

Changelog
VersionDescription
3.0.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.