WP_Media_List_Table::column_desc()publicWP 4.3.0

Deprecated from version 6.2.0. It is no longer supported and can 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.

Return

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.5.2

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

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