query = $query; } public function orderby_options() { $orderby = [ 'ID' => 'Docs ID', 'author' => 'Docs Author', 'title' => 'Title', 'date' => 'Date', 'modified' => 'Last Modified Date', 'parent' => 'Parent Id', 'rand' => 'Random', 'comment_count' => 'Comment Count', 'menu_order' => 'Menu Order', 'betterdocs_order' => 'BetterDocs Order' ]; return $orderby; } /** * Get Post Categories * * @return array */ public function get_terms( $taxonomy = 'category', $key = 'term_id' ) { $options = []; $terms = get_terms( [ 'taxonomy' => $taxonomy, 'hide_empty' => true ] ); if ( ! empty( $terms ) && ! is_wp_error( $terms ) ) { foreach ( $terms as $term ) { $options[$term->{$key}] = $term->name; } } return $options; } public function get_faq_terms() { return $this->query->get_faq_terms(); } }