Jake Vanderwerf
2026-05-11 ac444cba221832c012c0435fdc8339fe9f37febb
inc/meta/Meta.php
@@ -104,11 +104,8 @@
         'post'   => get_post($id),
         'term'   => get_term($id),
         'user', 'integrations' => get_userdata($id),
         default => null
         default => false
      };
      if (!$this->wpObject){
         return;
      }
      $this->slug = match($type) {
         'post'   => $this->wpObject->post_type,
@@ -254,7 +251,6 @@
   public function setAll(array $data):bool
   {
      foreach ($data as $name => $value) {
         error_log('Setting '.$name.' with value: '.print_r($value, true));
         $this->set($name, $value, false);
      }
      return $this->save();