From 2127b1bdd73ecd2423e443992da4b442f5a3c1a3 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Wed, 04 Feb 2026 21:19:25 +0000
Subject: [PATCH] =Major overhaul of MetaManager.php -> Meta.php and RestRouteManager.php -> Rest.php. Seems to work for JakeVan

---
 inc/managers/SEO/SchemaOutputManager.php |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/inc/managers/SEO/SchemaOutputManager.php b/inc/managers/SEO/SchemaOutputManager.php
index cd8d0e5..ff062f4 100644
--- a/inc/managers/SEO/SchemaOutputManager.php
+++ b/inc/managers/SEO/SchemaOutputManager.php
@@ -2,7 +2,7 @@
 namespace JVBase\managers\SEO;
 
 use JVBase\managers\Cache;
-use JVBase\meta\MetaManager;
+use JVBase\meta\Meta;
 use WP_Term;
 use WP_User;
 
@@ -520,7 +520,7 @@
 	}
 
 	/**
-	 * Enhanced buildSchemaFromConfig with MetaManager integration
+	 * Enhanced buildSchemaFromConfig with Meta integration
 	 */
 	private function buildSchemaFromConfig(array $config, string $schemaType, ?string $id = null): ?array
 	{
@@ -531,11 +531,11 @@
 			$schema['@id'] = $id;
 		}
 
-		// Get MetaManager if we have a context
+		// Get Meta if we have a context
 		$meta = null;
 		$context = $this->getCurrentContext();
 		if ($context) {
-			$meta = new MetaManager($context['objectId'], $context['objectType']);
+			$meta = new Meta($context['objectId'], $context['objectType']);
 		}
 
 		// Process each field

--
Gitblit v1.10.0