Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
admin-columns-pro
/
codepress-admin-columns
/
classes
/
column
/
comment
:
author-name.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * @since 2.4.2 */ class CPAC_Column_Comment_Author_Name extends CPAC_Column { public function init() { parent::init(); // Properties $this->properties['type'] = 'column-author_name'; $this->properties['label'] = __( 'Author name', 'codepress-admin-columns' ); } public function get_value( $id ) { return $this->get_raw_value( $id ); } public function get_raw_value( $id ) { $comment = get_comment( $id ); return $comment->comment_author; } }