From a6b02de9cf30f9b8e58cb8e5d0c76398dd2bea38 Mon Sep 17 00:00:00 2001 From: badasswp Date: Mon, 8 Dec 2025 12:26:25 +0100 Subject: [PATCH 1/2] feat: perform search & replace for table head, foot & caption --- src/core/filters.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/core/filters.tsx b/src/core/filters.tsx index cfe03f9..cf4df9c 100644 --- a/src/core/filters.tsx +++ b/src/core/filters.tsx @@ -33,7 +33,10 @@ addAction( break; case 'core/table': + replaceBlockAttribute( args, 'head' ); replaceBlockAttribute( args, 'body' ); + replaceBlockAttribute( args, 'foot' ); + replaceBlockAttribute( args, 'caption' ); break; default: From 57923e7d1259b6d60767e1084c8de95f58c98ece Mon Sep 17 00:00:00 2001 From: badasswp Date: Mon, 8 Dec 2025 12:27:25 +0100 Subject: [PATCH 2/2] chore: add changelog entry --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ea6ef3c..15cf913 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.8.0 +* Feat: Add Search & Replace feature for table head, foot & caption. +* Tested up to WP 6.8. + ## 1.7.0 * Fix: Issue with rich content replacement (HTML bearing string). * Feat: On Modal open, show items found for Highlighted text.