From 46d681c6b825d21b3f698d793c4e630c687d90ad Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Thu, 21 May 2026 21:41:53 +0000
Subject: [PATCH] =Major CustomBlocks.php overhaul, expanding block support and customization from the editor. theme.json should now be updated on new themes to set brand colours, etc. Also note: major change to .col vs .row alignment: simplifying it to .top .bottom vs the confusion of the differences for .col/.row .start and .a-start
---
base/content.php | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/base/content.php b/base/content.php
index 15dd130..215c697 100644
--- a/base/content.php
+++ b/base/content.php
@@ -18,9 +18,9 @@
* - rewrites = (array) key = associated taxonomy; value = what to append to rewrite base
*/
$defaults = [];
-if (array_key_exists('has_support', JVB_SITE) && JVB_SITE['has_support'] === true) {
- $defaults = array_merge($defaults, jvb_support_post_type());
-}
+//if (!empty(JVB_SITE) && array_key_exists('has_support', JVB_SITE) && JVB_SITE['has_support'] === true) {
+// $defaults = array_merge($defaults, jvb_support_post_type());
+//}
$content = array_merge($defaults, apply_filters('jvb_content', []));
define('JVB_CONTENT', $content);
--
Gitblit v1.10.0