Jake Vanderwerf
2026-01-25 b38f03c0e7218762d90fa5092696b127f24f36db
checks.php
@@ -1,6 +1,6 @@
<?php
use JVBase\managers\CacheManager;
use JVBase\managers\Cache;
use JVBase\utility\Features;
if (!defined('ABSPATH')) {
@@ -261,18 +261,16 @@
function jvbTermHasPosts(int $termID, string $taxonomy):bool
{
   $cache = CacheManager::for('terms', 30*60)->connectTo('taxonomy');
   $key = $termID.$taxonomy;
   $cached = $cache->get($key);
   if ($cached) {
      return ($cached === 'true');
   }
   $cache = Cache::for('termUtility', 30*60)->connect('taxonomy');
   return $cache->remember(
      $termID,
      function() use($taxonomy, $termID) {
   $taxonomy = jvbCheckBase($taxonomy);
   $tax = get_taxonomy($taxonomy);
   $query = new WP_Query([
      'post_type' => $tax->object_type,
      'posts_per_page'  => 1,
      'fields' => 'id',
            'fields' => 'ids',
      'tax_query' => [
         [
            'taxonomy'  => $taxonomy,
@@ -282,6 +280,7 @@
   ]);
   $result = ($query->have_posts()) ? 'true': 'false';
   wp_reset_postdata();
   $cache->set($key, $result);
   return $result === 'true';
         return $result;
      }
   );
}