From 128ad8b26b4aeb5297a8d67c99bfae265f46bd07 Mon Sep 17 00:00:00 2001 From: Rick Peterman Date: Wed, 29 May 2024 12:14:01 -0500 Subject: [PATCH] fix(theme): increment block editor asset versions --- wp-content/themes/the-world/functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-content/themes/the-world/functions.php b/wp-content/themes/the-world/functions.php index 0ea2de976..7cb3e327a 100644 --- a/wp-content/themes/the-world/functions.php +++ b/wp-content/themes/the-world/functions.php @@ -147,14 +147,14 @@ function tw_block_editor_assets() { 'tw-deny-list-blocks', get_template_directory_uri() . '/js/blockembed.js', array( 'wp-blocks', 'wp-dom-ready', 'wp-edit-post' ), - '1.0', + '1.1', array( 'in_footer' => true ) ); wp_enqueue_style( 'tw-block-editor-styles', get_template_directory_uri() . '/css/block-editor.css', array(), - '1.0' + '1.1' ); } endif;