WP_Post_Comments_List_Table::get_column_info()protectedWP 1.0

Method of the class: WP_Post_Comments_List_Table{}

No Hooks.

Return

Array.

Usage

// protected - for code of main (parent) or child class
$result = $this->get_column_info();

WP_Post_Comments_List_Table::get_column_info() code WP 6.4.3

protected function get_column_info() {
	return array(
		array(
			'author'  => __( 'Author' ),
			'comment' => _x( 'Comment', 'column name' ),
		),
		array(),
		array(),
		'comment',
	);
}