WP_Media_List_Table::column_desc() WordPress Method
The WP_Media_List_Table::column_desc() method is used to generate the content for the Description column in the Media list table.
WP_Media_List_Table::column_desc( WP_Post $post ) #
Handles the description column output.
Parameters
Source
File: wp-admin/includes/class-wp-media-list-table.php
public function column_desc( $post ) { echo has_excerpt() ? $post->post_excerpt : ''; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.3.0 | Introduced. |