\__( 'Identifier', 'activitypub' ), ); } public function get_sortable_columns() { return array(); } public function prepare_items() { $columns = $this->get_columns(); $hidden = array(); $this->process_action(); $this->_column_headers = array( $columns, $hidden, $this->get_sortable_columns() ); $this->items = array(); foreach ( \Activitypub\Peer\Followers::get_followers( \get_current_user_id() ) as $follower ) { $this->items[]['identifier'] = \esc_attr( $follower ); } } public function column_default( $item, $column_name ) { return $item[ $column_name ]; } }