diff --git a/inc/extras.php b/inc/extras.php index e043cb6..4730724 100644 --- a/inc/extras.php +++ b/inc/extras.php @@ -49,7 +49,7 @@ if ( version_compare( $GLOBALS['wp_version'], '4.1', '<' ) ) : // Add a page number if necessary: if ( ( $paged >= 2 || $page >= 2 ) && ! is_404() ) { - $title .= " $sep " . sprintf( __( 'Page %s', '_s' ), max( $paged, $page ) ); + $title .= " $sep " . sprintf( esc_html__( 'Page %s', '_s' ), max( $paged, $page ) ); } return $title;