Jake Vanderwerf
2026-05-24 5a6906f710e9333507486df3cbb545a67a040881
jvb.php
@@ -141,6 +141,13 @@
   return IconsManager::for($source)->get($name, $options);
}
function jvbFullIcon(string $name, array $options = []):string
{
   $source = $options['source'] ?? 'icons';
   unset($options['source']);
   return IconsManager::for($source)->getRawSvg($name, $options['style']??null);
}
/**
 * Get a CSS data URI for an icon
 *
@@ -503,6 +510,13 @@
    echo '<div class="screen-reader-text live-region" aria-live="polite" role="status"></div>';
}
add_action('wp_head', 'jvbFrontendBase',1);
function jvbFrontendBase():void
{
   ?>
   <script type="text/javascript">window.jvbBase = '<?= BASE ?>';</script>
   <?php
}
//add_action('wp_head', 'jvbDumpIt');
function jvbDumpIt()
@@ -550,3 +564,13 @@
   }
   return $result;
}, 99);
add_action('wp_footer', 'jvb_back_to_top');
function jvb_back_to_top():void
{
   echo sprintf(
      '<a id="back-to-top" class="btn sticky" href="#">%s<span>Back to Top</span></a>',
      jvbIcon('caret-double-up')
   );
}