We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 97ecfcf + 57923e7 commit b515b77Copy full SHA for b515b77
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# Changelog
2
3
+## 1.8.0
4
+* Feat: Add Search & Replace feature for table head, foot & caption.
5
+* Tested up to WP 6.8.
6
+
7
## 1.7.0
8
* Fix: Issue with rich content replacement (HTML bearing string).
9
* Feat: On Modal open, show items found for Highlighted text.
src/core/filters.tsx
@@ -33,7 +33,10 @@ addAction(
33
break;
34
35
case 'core/table':
36
+ replaceBlockAttribute( args, 'head' );
37
replaceBlockAttribute( args, 'body' );
38
+ replaceBlockAttribute( args, 'foot' );
39
+ replaceBlockAttribute( args, 'caption' );
40
41
42
default:
0 commit comments