WP_Posts_List_Table::column_author( WP_Post $post )

In this article

Handles the post author column output.

Parameters

$postWP_Postrequired
The current WP_Post object.

Source

public function column_author( $post ) {
	$author = get_the_author();

	if ( ! empty( $author ) ) {
		$args = array(
			'post_type' => $post->post_type,
			'author'    => get_the_author_meta( 'ID' ),
		);
		echo $this->get_edit_link( $args, esc_html( $author ) );
	} else {
		echo '<span aria-hidden="true">&#8212;</span><span class="screen-reader-text">' . __( '(no author)' ) . '</span>';
	}
}

Changelog

VersionDescription
6.8.0Added fallback text when author’s name is unknown.
4.3.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.