From 24d7c4c9d5dedce23d3bc6816a22b0c16b4c0b65 Mon Sep 17 00:00:00 2001 From: Glen Davies Date: Wed, 22 Jun 2022 09:33:40 +1200 Subject: [PATCH] Lower the priority of the gallery gap css so it loads after the block layout css --- src/wp-includes/blocks/gallery.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/wp-includes/blocks/gallery.php b/src/wp-includes/blocks/gallery.php index 4aed9cfed051b..c31df47a3a01b 100644 --- a/src/wp-includes/blocks/gallery.php +++ b/src/wp-includes/blocks/gallery.php @@ -86,7 +86,8 @@ function block_core_gallery_render( $attributes, $content ) { 'wp_footer', function () use ( $style ) { echo ''; - } + }, + 11 ); return $content; }