On this page
WP_Posts_List_Table::column_author( WP_Post $post )
Handles the post author column output.
Parameters
Source
File: wp-admin/includes/class-wp-posts-list-table.php. View all references
public function column_author( $post ) {
$args = array(
'post_type' => $post->post_type,
'author' => get_the_author_meta( 'ID' ),
);
echo $this->get_edit_link( $args, get_the_author() );
}
Related
Uses
| Uses | Description |
|---|---|
| WP_Posts_List_Table::get_edit_link() wp-admin/includes/class-wp-posts-list-table.php | Helper to create links to edit.php with params. |
| get_the_author_meta() wp-includes/author-template.php | Retrieves the requested data of the author of the current post. |
| get_the_author() wp-includes/author-template.php | Retrieves the author of the current post. |
Changelog
| Version | Description |
|---|---|
| 4.3.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_posts_list_table/column_author