Summery Summery
Handles the date column output.
Syntax Syntax
Parameters Parameters
- $post
-
(Required) The current WP_Post object.
Source Source
File: wp-admin/includes/class-wp-media-list-table.php
); } /** * Handles the description column output. * * @since 4.3.0 * * @param WP_Post $post The current WP_Post object. */ public function column_desc( $post ) { echo has_excerpt() ? $post->post_excerpt : ''; } /** * Handles the date column output. *
Advertisement
Changelog Changelog
Version | Description |
---|---|
4.3.0 | Introduced. |