W3cubDocs

/WordPress

WP_Media_List_Table::column_author( WP_Post $post )

Handles the author column output.

Parameters

$post

(WP_Post) (Required) The current WP_Post object.

Source

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

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

Version Description
4.3.0 Introduced.

© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_media_list_table/column_author