WP_Media_List_Table::column_desc( WP_Post $post )
- Since
- 4.3.0
- Source
wp-admin/includes/class-wp-media-list-table.php:561
Handles the description column output.
Parameters
$postWP_Post- The current WP_Post object.
Uses · 2
- _deprecated_function()Marks a function as deprecated and inform when it has been used.
- has_excerpt()Determines whether the post has a custom excerpt.
Source
public function column_desc( $post ) { _deprecated_function( __METHOD__, '6.2.0' ); echo has_excerpt() ? $post->post_excerpt : ''; }History
Introduced in 4.3.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
6.2.0
Deprecated.from the docblock
4.3.0
Introduced.from the docblock
About this page
- Parsed data
- Generated from the wordpress-develop 7.0.4 tag, from
src/wp-admin/includes/class-wp-media-list-table.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it. - Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.