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/helpers/all.php | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/inc/helpers/all.php b/inc/helpers/all.php
index 59ef251..3931fc3 100644
--- a/inc/helpers/all.php
+++ b/inc/helpers/all.php
@@ -32,12 +32,14 @@
*/
function jvb_do_once():void
{
+
// delete_option(BASE.'do_these_once');
$options = get_option(BASE.'do_these_once', []);
foreach ($options as $option => $callback) {
// delete_option($option);
if (!get_option($option, false)) {
+ error_log('Calling do once: '.$option);
$callback();
update_option($option, true);
}
--
Gitblit v1.10.0