WP_Media_List_Table::column_descpublicWP 4.3.0

Deprecated since 6.2.0. It is no longer supported and may be removed in future releases. It is recommended to replace this function with the same one.

Handles the description column output.

Method of the class: WP_Media_List_Table{}

No Hooks.

Returns

null. Nothing (null).

Usage

$WP_Media_List_Table = new WP_Media_List_Table();
$WP_Media_List_Table->column_desc( $post );
$post(WP_Post) (required)
The current WP_Post object.

Changelog

Since 4.3.0 Introduced.
Deprecated since 6.2.0

WP_Media_List_Table::column_desc() code WP 6.8.1

public function column_desc( $post ) {
	_deprecated_function( __METHOD__, '6.2.0' );

	echo has_excerpt() ? $post->post_excerpt : '';
}