diff --git src/wp-includes/general-template.php src/wp-includes/general-template.php
index a2b1029064..627311772d 100644
|
|
function _wp_render_title_tag() { |
1299 | 1299 | return; |
1300 | 1300 | } |
1301 | 1301 | |
1302 | | echo '<title>' . wp_get_document_title() . '</title>' . "\n"; |
| 1302 | echo '<title>' . esc_html( wp_get_document_title() ) . '</title>' . "\n"; |
1303 | 1303 | } |
1304 | 1304 | |
1305 | 1305 | /** |
diff --git src/wp-includes/load.php src/wp-includes/load.php
index 3db556583c..bfda00cd14 100644
|
|
function timer_stop( $display = 0, $precision = 3 ) { |
495 | 495 | } |
496 | 496 | |
497 | 497 | if ( $display ) { |
498 | | echo $r; |
| 498 | echo esc_html( $r ); |
499 | 499 | } |
500 | 500 | |
501 | 501 | return $r; |
diff --git src/wp-includes/theme-compat/header.php src/wp-includes/theme-compat/header.php
index cbd84eb20e..264c5389ea 100644
|
|
_deprecated_file( |
21 | 21 | <link rel="profile" href="https://gmpg.org/xfn/11" /> |
22 | 22 | <meta http-equiv="Content-Type" content="<?php bloginfo( 'html_type' ); ?>; charset=<?php bloginfo( 'charset' ); ?>" /> |
23 | 23 | |
24 | | <title><?php echo wp_get_document_title(); ?></title> |
| 24 | <title><?php echo esc_html( wp_get_document_title() ); ?></title> |
25 | 25 | |
26 | 26 | <link rel="stylesheet" href="<?php bloginfo( 'stylesheet_url' ); ?>" type="text/css" media="screen" /> |
27 | 27 | <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" /> |
… |
… |
if ( is_singular() ) { |
54 | 54 | |
55 | 55 | <div id="header" role="banner"> |
56 | 56 | <div id="headerimg"> |
57 | | <h1><a href="<?php echo home_url(); ?>/"><?php bloginfo( 'name' ); ?></a></h1> |
| 57 | <h1><a href="<?php echo esc_url( home_url() ); ?>/"><?php bloginfo( 'name' ); ?></a></h1> |
58 | 58 | <div class="description"><?php bloginfo( 'description' ); ?></div> |
59 | 59 | </div> |
60 | 60 | </div> |