From 47e77f9fac1155c536b2b87fec552c7fcce66fa6 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Mon, 01 Jun 2026 18:06:34 +0000
Subject: [PATCH] =Timeline block fixes. Next up: adding article schema classes

---
 inc/blocks/FAQBlock.php |    8 +-------
 1 files changed, 1 insertions(+), 7 deletions(-)

diff --git a/inc/blocks/FAQBlock.php b/inc/blocks/FAQBlock.php
index d16032a..90443e6 100644
--- a/inc/blocks/FAQBlock.php
+++ b/inc/blocks/FAQBlock.php
@@ -25,12 +25,6 @@
 				'render_callback' => [$this, 'render'],
 			]
 		);
-//
-//		// Localize script data for the editor
-//		add_action('enqueue_block_editor_assets', [$this, 'enqueue_editor_assets']);
-//
-//		// Enqueue frontend scripts
-//		add_action('wp_enqueue_scripts', [$this, 'enqueue_frontend_assets']);
 	}
 
 	/**
@@ -280,7 +274,7 @@
 							?>
 						<details class="faq"<?= !$collapse_by_default ? ' open' : '' ?>>
 							<summary><h3><b>Q</b> <?= esc_html($faq['title']) ?></h3></summary>
-							<?= apply_filters('the_content', $faq['content']) ?>
+							<?= jvb_filter_content( $faq['content']) ?>
 							<a class="button" href="<?= $faq['url'] ?>" title="Learn More about <?=$faq['title']?>">Learn More</a>
 						</details>
 						<?php endforeach; ?>

--
Gitblit v1.10.0