WP_Media_List_Table::column_desc( WP_Post $post )

In this article

This method has been deprecated.

Handles the description column output.

Parameters

$postWP_Postrequired
The current WP_Post object.

Source

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

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

Changelog

VersionDescription
6.2.0This method has been deprecated.
4.3.0Introduced.

User Contributed Notes

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