WP_Media_List_Table::column_author()
Handles the author 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_author( $post );
- $post(WP_Post) (required)
- The current WP_Post object.
Changelog
Since 4.3.0 | Introduced. |
WP_Media_List_Table::column_author() WP Media List Table::column author code WP 6.7.1
public function column_author( $post ) { printf( '<a href="%s">%s</a>', esc_url( add_query_arg( array( 'author' => get_the_author_meta( 'ID' ) ), 'upload.php' ) ), get_the_author() ); }