Skip to content

Commit c6252cf

Browse files
committed
Remove now useless constant checks around generator tags.
1 parent 2ee33fa commit c6252cf

File tree

3 files changed

+3
-16
lines changed

3 files changed

+3
-16
lines changed

plugins/dominant-color-images/hooks.php

+1-6
Original file line numberDiff line numberDiff line change
@@ -178,11 +178,6 @@ function dominant_color_add_inline_style() {
178178
* @since 1.0.0
179179
*/
180180
function dominant_color_render_generator() {
181-
if (
182-
defined( 'DOMINANT_COLOR_IMAGES_VERSION' ) &&
183-
! str_starts_with( DOMINANT_COLOR_IMAGES_VERSION, 'Performance Lab ' )
184-
) {
185-
echo '<meta name="generator" content="Dominant Color Images ' . esc_attr( DOMINANT_COLOR_IMAGES_VERSION ) . '">' . "\n";
186-
}
181+
echo '<meta name="generator" content="Dominant Color Images ' . esc_attr( DOMINANT_COLOR_IMAGES_VERSION ) . '">' . "\n";
187182
}
188183
add_action( 'wp_head', 'dominant_color_render_generator' );

plugins/embed-optimizer/hooks.php

+1-5
Original file line numberDiff line numberDiff line change
@@ -162,10 +162,6 @@ function embed_optimizer_trigger_error( string $function_name, string $message,
162162
* @since 0.1.0
163163
*/
164164
function embed_optimizer_render_generator() {
165-
if (
166-
defined( 'EMBED_OPTIMIZER_VERSION' )
167-
) {
168-
echo '<meta name="generator" content="Embed Optimizer ' . esc_attr( EMBED_OPTIMIZER_VERSION ) . '">' . "\n";
169-
}
165+
echo '<meta name="generator" content="Embed Optimizer ' . esc_attr( EMBED_OPTIMIZER_VERSION ) . '">' . "\n";
170166
}
171167
add_action( 'wp_head', 'embed_optimizer_render_generator' );

plugins/webp-uploads/hooks.php

+1-5
Original file line numberDiff line numberDiff line change
@@ -770,11 +770,7 @@ function webp_uploads_modify_webp_quality( $quality, $mime_type ) {
770770
* @since 1.0.0
771771
*/
772772
function webp_uploads_render_generator() {
773-
if (
774-
defined( 'WEBP_UPLOADS_VERSION' )
775-
) {
776-
echo '<meta name="generator" content="WebP Uploads ' . esc_attr( WEBP_UPLOADS_VERSION ) . '">' . "\n";
777-
}
773+
echo '<meta name="generator" content="WebP Uploads ' . esc_attr( WEBP_UPLOADS_VERSION ) . '">' . "\n";
778774
}
779775
add_action( 'wp_head', 'webp_uploads_render_generator' );
780776

0 commit comments

Comments
 (0)