WP_Media_List_Table::column_authorpublicWP 4.3.0

Handles the author column output.

Метод класса: WP_Media_List_Table{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$WP_Media_List_Table = new WP_Media_List_Table();
$WP_Media_List_Table->column_author( $post );
$post(WP_Post) (обязательный)
The current WP_Post object.

Список изменений

С версии 4.3.0 Введена.
С версии 6.8.0 Added fallback text when author's name is unknown.

Код WP_Media_List_Table::column_author() WP 6.9.1

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

	if ( ! empty( $author ) ) {
		printf(
			'<a href="%s">%s</a>',
			esc_url( add_query_arg( array( 'author' => get_the_author_meta( 'ID' ) ), 'upload.php' ) ),
			esc_html( $author )
		);
	} else {
		echo '<span aria-hidden="true">&#8212;</span><span class="screen-reader-text">' . __( '(no author)' ) . '</span>';
	}
}