set_group( 'genesis' ); } public function scripts() { parent::scripts(); wp_enqueue_style( 'aca-genesis-column' ); } /** * @return string */ public function get_meta_key() { return $this->meta_key; } /** * @param string $val * @return $this */ public function set_meta_key( $val ) { $this->meta_key = $val; return $this; } /** * @inheritdoc * @see AC_Column::get_value() */ public function get_value( $id ) { $value = $this->get_raw_value( $id ); if ( ! $value ) { return false; } return $value; } /** * @return string */ public function get_field() { return $this->get_meta_key(); } }