PluginProbe
bBlocks – Essential Gutenberg Blocks & Patterns Collection / 2.1.7
bBlocks – Essential Gutenberg Blocks & Patterns Collection v2.1.7
2.1.7 2.1.6 2.1.5 2.1.4 2.1.3 2.1.2 2.1.1 2.1.0 2.0.43 2.0.42 2.0.41 2.0.40 2.0.39 2.0.38 trunk 1.0 1.1 1.2 1.3 1.4 1.5 1.5.1 1.5.2 1.5.3 1.5.4 All 107 releases
← All changes | build/section-heading/render.php +2 -2 2.0.432.1.7 View file →
@@ -49,8 +49,8 @@
49 49 </style>
50 50
51 51 <div class='bBlocksSectionHeading'>
52 52 <h2 class='sectionHeadingTitle'><?php echo wp_kses_post( $title ); ?></h2>
53 - <?php echo $isSep ? "<span class='sectionHeadingSeparator'></span>" : ''; ?>
54 - <?php echo $isDesc ? "<p class='sectionHeadingDescription'>". wp_kses_post( $desc ) ."</p>" : ''; ?>
53 + <?php echo $isSep ? "<span class='sectionHeadingSeparator'></span>" : ''; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- static markup, no user input. ?>
54 + <?php echo $isDesc ? "<p class='sectionHeadingDescription'>". wp_kses_post( $desc ) ."</p>" : ''; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- static wrapper tags with wp_kses_post-escaped content. ?>
55 55 </div>
56 56 </div>