WordCount.php
382 Bytes
<?php
namespace AC\Column\Comment;
use AC\Column;
/**
* @since 2.0
*/
class WordCount extends Column {
public function __construct() {
$this->set_type( 'column-word_count' )
->set_label( __( 'Word Count', 'codepress-admin-columns' ) );
}
public function get_raw_value( $id ) {
return ac_helper()->string->word_count( get_comment( $id )->comment_content );
}
}