diff --git a/comments.php b/comments.php
index 2c94bfd0..adf9b157 100644
--- a/comments.php
+++ b/comments.php
@@ -33,14 +33,14 @@ if ( post_password_required() ) {
printf(
/* translators: 1: title. */
esc_html__( 'One thought on “%1$s”', '_s' ),
- '' . get_the_title() . ''
+ '' . wp_kses_post( get_the_title() ) . ''
);
} else {
printf( // WPCS: XSS OK.
/* translators: 1: comment count number, 2: title. */
esc_html( _nx( '%1$s thought on “%2$s”', '%1$s thoughts on “%2$s”', $_s_comment_count, 'comments title', '_s' ) ),
number_format_i18n( $_s_comment_count ),
- '' . get_the_title() . ''
+ '' . wp_kses_post( get_the_title() ) . ''
);
}
?>
diff --git a/inc/template-tags.php b/inc/template-tags.php
index 652709e0..3c7426af 100644
--- a/inc/template-tags.php
+++ b/inc/template-tags.php
@@ -86,7 +86,7 @@ if ( ! function_exists( '_s_entry_footer' ) ) :
),
)
),
- get_the_title()
+ wp_kses_post( get_the_title() )
)
);
echo '';
@@ -103,7 +103,7 @@ if ( ! function_exists( '_s_entry_footer' ) ) :
),
)
),
- get_the_title()
+ wp_kses_post( get_the_title() )
),
'',
''
diff --git a/template-parts/content-page.php b/template-parts/content-page.php
index b20eff0c..7339a9c3 100644
--- a/template-parts/content-page.php
+++ b/template-parts/content-page.php
@@ -41,7 +41,7 @@
),
)
),
- get_the_title()
+ wp_kses_post( get_the_title() )
),
'',
''
diff --git a/template-parts/content.php b/template-parts/content.php
index 0573e82e..2e58962e 100644
--- a/template-parts/content.php
+++ b/template-parts/content.php
@@ -43,7 +43,7 @@
),
)
),
- get_the_title()
+ wp_kses_post( get_the_title() )
) );
wp_link_pages( array(