Jake Vanderwerf
2026-03-29 9f672be1f7bb5f8462374ca4732d095d4f24685b
inc/managers/CRUDManager.php
@@ -75,7 +75,12 @@
         $this->skeleton->setCalendar();
      }
      $this->skeleton->setDefaultStatus();
      if ($this->registrar && $this->registrar->getType() === 'post') {
         $this->skeleton->setDefaultStatus();
      } else {
         $this->skeleton->setStatuses([]);
      }
      // Views
      $this->skeleton
@@ -87,7 +92,7 @@
      $this->skeleton->addDateFilter();
      $this->skeleton->addCustomDateRange($this->addDateRanges());
      if (!empty($this->taxonomies)) {
         $this->skeleton->addTaxonomyFilter(array_keys($this->taxonomies), 'user');
         $this->skeleton->addTaxonomyFilter($this->taxonomies, 'user');
      }
      // Capabilities
@@ -154,7 +159,7 @@
    * Initialize taxonomies from WordPress config
    */
   protected function initTaxonomies(): void {
      $this->taxonomies = $this->registrar->registrar->taxonomies;
      $this->taxonomies = ($this->registrar->getType() === 'post') ? $this->registrar->registrar->taxonomies : [];
   }
   /**