Jake Vanderwerf
2026-03-08 c19264ac916707096fe294d996a1b7fb85206b34
inc/managers/SEO/render/Traits/ThingSchema.php
@@ -31,13 +31,14 @@
   protected array $ignore = [
      'mappedMethods',
      'ignore'
      'ignore',
      'id'
   ];
   public function outputSchema():array
   {
      global $wp;
      $current = home_url( add_query_arg( $_GET, $wp->request ) );
      $id = (isset($this->id)) ? $this->id : $current.'/#'.strtolower($this->getTypeName());
      $id = (isset($this->id)) ? $this->id : $current.'#'.strtolower($this->getTypeName());
      $elements = array_map(
         function ($value) {
@@ -118,4 +119,11 @@
      }
      $this->id = $id;
   }
   public function delete(string $property):void
   {
      if (property_exists($this, $property)) {
         unset($this->$property);
      }
   }
}