WP_Posts_List_Table::column_author()
Handles the post author column output.
Метод класса: WP_Posts_List_Table{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$WP_Posts_List_Table = new WP_Posts_List_Table(); $WP_Posts_List_Table->column_author( $post );
- $post(WP_Post) (обязательный)
- The current WP_Post object.
Список изменений
С версии 4.3.0 | Введена. |
Код WP_Posts_List_Table::column_author() WP Posts List Table::column author WP 6.6.1
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() ); }