WP_Posts_List_Table::column_author()publicWP 4.3.0

Handles the post author column output.

Method of the class: WP_Posts_List_Table{}

No Hooks.

Return

null. Nothing (null).

Usage

$WP_Posts_List_Table = new WP_Posts_List_Table();
$WP_Posts_List_Table->column_author( $post );
$post(WP_Post) (required)
The current WP_Post object.

Changelog

Since 4.3.0 Introduced.

WP_Posts_List_Table::column_author() code WP 6.5.2

public function column_author( $post ) {
	$args = array(
		'post_type' => $post->post_type,
		'author'    => get_the_author_meta( 'ID' ),
	);
	echo $this->get_edit_link( $args, get_the_author() );
}