ensure_my_table(); // Reverse ASC and DESC for weight order so that the sticky weights are ordered like real weights. if ($this->options['order'] == 'ASC') { $this->options['order'] = 'DESC'; } elseif ($this->options['order'] == 'DESC') { $this->options['order'] = 'ASC'; } $this->query->add_orderby($this->table_alias, $this->real_field, $this->options['order']); } }