post_comment_meta_box_thead

The timeline below displays how wordpress function post_comment_meta_box_thead has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 6.1

/**
 * Displays comments for post table header
 *
 * @since 3.0.0
 *
 * @param array $result Table header rows.
 * @return array
 */
function post_comment_meta_box_thead($result)
{
    unset($result['cb'], $result['response']);
    return $result;
}

WordPress Version: 3.7

/**
 * Display comments for post table header
 *
 * @since 3.0.0
 *
 * @param array $result table header rows
 * @return array
 */
function post_comment_meta_box_thead($result)
{
    unset($result['cb'], $result['response']);
    return $result;
}