WP_Media_List_Table::column_author( WP_Post $post )

In this article

Handles the author column output.

Parameters

$postWP_Postrequired
The current WP_Post object.

Source

public function column_author( $post ) {
	printf(
		'<a href="%s">%s</a>',
		esc_url( add_query_arg( array( 'author' => get_the_author_meta( 'ID' ) ), 'upload.php' ) ),
		get_the_author()
	);
}

Changelog

VersionDescription
4.3.0Introduced.

User Contributed Notes

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