WP_Posts_List_Table::column_author( WP_Post $post )

Handles the post author column output.


Parameters

$post

(WP_Post) (Required) The current WP_Post object.


Source

File: wp-admin/includes/class-wp-posts-list-table.php

	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() );
	}


Changelog

Changelog
Version Description
WP-4.3.0 Introduced.