From a24a06002081ad71a78ffeff9072725ba39cf121 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Tue, 17 Feb 2026 20:05:31 +0000
Subject: [PATCH] =minor changes, particularly around the JVB_CHILD_URL pattern
---
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