From 56a9a1ccf764ff7a6af8f8a2292cb07443cb4aa7 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Thu, 28 May 2026 18:19:57 +0000
Subject: [PATCH] =New Gitbit setpu

---
 inc/registrar/config/seo/Schema.php |   29 +++++++++++++++++++++++++----
 1 files changed, 25 insertions(+), 4 deletions(-)

diff --git a/inc/registrar/config/seo/Schema.php b/inc/registrar/config/seo/Schema.php
index 0214fa5..6e67534 100644
--- a/inc/registrar/config/seo/Schema.php
+++ b/inc/registrar/config/seo/Schema.php
@@ -23,6 +23,7 @@
 
 	protected array $properties = [];
 	protected array $referenceProperties = [];
+	protected array $extras = [];
 	protected array $defaultReference = [
 		'name'	=> '{{post_title}}',
 		'url'	=> '{{post_permalink}}',
@@ -67,6 +68,8 @@
 			}
 			$this->defaultArchive['description'] = '{{registrar.'.$slug.'.description}}';
 		}
+
+		$this->extras = apply_filters(BASE.ucfirst($slug).'Extras', []);
 		$this->initFilters();
 		$this->registerHooks();
 	}
@@ -295,7 +298,11 @@
 					$class->setMainEntity($itemList);
 
 					$schema = $class->outputSchema();
-					error_log('Generated archive schema: '.print_r($schema, true));
+
+					if (JVB_TESTING) {
+//						error_log('Generated archive schema: '.print_r($schema, true));
+					}
+
 					return $schema;
 				}
 			);
@@ -351,8 +358,6 @@
 			error_log('[SEO]Schema::getConfig Invalid type: '.$type);
 			return [];
 		}
-		jvbDump($this->slug);
-		jvbDump($type);
 		return JVB()->schemaHelper()::getConfig($this->slug, $type);
 	}
 
@@ -442,7 +447,7 @@
 			$title = Resolver::resolve($config['name']??$config['title']??'', $meta);
 		} elseif (is_post_type_archive($based) ) {
 			$config = $this->getConfig('archive');
-			$title = $config['name'];
+			$title = Resolver::resolve($config['name'], null);
 		} elseif (is_tax($based)) {
 			$config = $this->getConfig('archive');
 			$meta = Meta::forTerm(get_queried_object_id());
@@ -658,4 +663,20 @@
 		$page->setMainEntity($termset);
 		return $page->outputSchema();
 	}
+
+	public function extra():array
+	{
+		if (empty($this->extras)) {
+			return [];
+		}
+		$out = [];
+		foreach ($this->extras as $config) {
+			$schema = SchemaHelper::classFromConfig($config);
+			$output = $schema->outputSchema();
+			if (!empty($output)) {
+				$out[] = $output;
+			}
+		}
+		return $out;
+	}
 }

--
Gitblit v1.10.0