From 56dabe84560927f59d64eb37a797ac1ae0a46b1b Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Tue, 12 May 2026 18:58:21 +0000
Subject: [PATCH] =added state schema.org class
---
inc/managers/SEO/render/Thing/Place/AdministrativeArea/State.php | 14 ++++++++++++++
inc/blocks/CustomBlocks.php | 1 +
2 files changed, 15 insertions(+), 0 deletions(-)
diff --git a/inc/blocks/CustomBlocks.php b/inc/blocks/CustomBlocks.php
index 6679038..174e1a7 100644
--- a/inc/blocks/CustomBlocks.php
+++ b/inc/blocks/CustomBlocks.php
@@ -19,6 +19,7 @@
{
$this->cache = Cache::for('blocks', WEEK_IN_SECONDS);
$this->cache->connect('post')->connect('taxonomy');
+ $this->cache->flush();
add_filter('render_block', [$this, 'render'], 900, 2);
add_action('init', [$this, 'registerBlockStyles']);
diff --git a/inc/managers/SEO/render/Thing/Place/AdministrativeArea/State.php b/inc/managers/SEO/render/Thing/Place/AdministrativeArea/State.php
new file mode 100644
index 0000000..4d2d850
--- /dev/null
+++ b/inc/managers/SEO/render/Thing/Place/AdministrativeArea/State.php
@@ -0,0 +1,14 @@
+<?php
+namespace JVBase\inc\managers\SEO\render\Thing\Place\AdministrativeArea;
+
+use JVBase\managers\SEO\render\Thing\Intangible\ContactPoint\PostalAddress;
+use JVBase\managers\SEO\render\Thing\Place\AdministrativeArea\AdministrativeArea;
+use JVBase\managers\SEO\render\Thing\Thing;
+
+if (!defined('ABSPATH')) {
+ exit;
+}
+/** Or Province **/
+class State extends AdministrativeArea {
+
+}
--
Gitblit v1.10.0