Exemple #1
0
 private function setData()
 {
     $post_type = $this->post_type;
     $taxonomy = $this->taxonomy;
     $terms = $this->terms;
     if ($this->component == 'vegas') {
         $data = QueryBuilder::getImagesByPostType($post_type, $taxonomy, $terms);
     } else {
         $data = QueryBuilder::getPostBasicInfo($post_type, $taxonomy, $terms, false);
     }
     $this->data = $data;
 }