diff --git a/src/wp-content/themes/twentyeleven/header.php b/src/wp-content/themes/twentyeleven/header.php
index df8f7ee..b3ef310 100644
a
|
b
|
if ( ( $paged >= 2 || $page >= 2 ) && ! is_404() ) { |
49 | 49 | </title> |
50 | 50 | <link rel="profile" href="http://gmpg.org/xfn/11" /> |
51 | 51 | <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" /> |
52 | | <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" /> |
| 52 | <link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>"> |
53 | 53 | <!--[if lt IE 9]> |
54 | 54 | <script src="<?php echo get_template_directory_uri(); ?>/js/html5.js" type="text/javascript"></script> |
55 | 55 | <![endif]--> |
diff --git a/src/wp-content/themes/twentyfifteen/header.php b/src/wp-content/themes/twentyfifteen/header.php
index a088d85..d0aff73 100644
a
|
b
|
|
14 | 14 | <meta charset="<?php bloginfo( 'charset' ); ?>"> |
15 | 15 | <meta name="viewport" content="width=device-width"> |
16 | 16 | <link rel="profile" href="http://gmpg.org/xfn/11"> |
17 | | <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>"> |
| 17 | <link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>"> |
18 | 18 | <!--[if lt IE 9]> |
19 | 19 | <script src="<?php echo esc_url( get_template_directory_uri() ); ?>/js/html5.js"></script> |
20 | 20 | <![endif]--> |
diff --git a/src/wp-content/themes/twentyfourteen/header.php b/src/wp-content/themes/twentyfourteen/header.php
index 4dec164..43e861c 100644
a
|
b
|
|
23 | 23 | <meta name="viewport" content="width=device-width"> |
24 | 24 | <title><?php wp_title( '|', true, 'right' ); ?></title> |
25 | 25 | <link rel="profile" href="http://gmpg.org/xfn/11"> |
26 | | <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>"> |
| 26 | <link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>"> |
27 | 27 | <!--[if lt IE 9]> |
28 | 28 | <script src="<?php echo get_template_directory_uri(); ?>/js/html5.js"></script> |
29 | 29 | <![endif]--> |
diff --git a/src/wp-content/themes/twentyseventeen/functions.php b/src/wp-content/themes/twentyseventeen/functions.php
index 2e147a9..543da5c 100644
a
|
b
|
add_action( 'wp_head', 'twentyseventeen_javascript_detection', 0 ); |
398 | 398 | */ |
399 | 399 | function twentyseventeen_pingback_header() { |
400 | 400 | if ( is_singular() && pings_open() ) { |
401 | | printf( '<link rel="pingback" href="%s">' . "\n", get_bloginfo( 'pingback_url' ) ); |
| 401 | printf( '<link rel="pingback" href="%s">' . "\n", esc_url( get_bloginfo( 'pingback_url' ) ) ); |
402 | 402 | } |
403 | 403 | } |
404 | 404 | add_action( 'wp_head', 'twentyseventeen_pingback_header' ); |
diff --git a/src/wp-content/themes/twentysixteen/header.php b/src/wp-content/themes/twentysixteen/header.php
index 9bc0d3e..b2d1cbb 100644
a
|
b
|
|
16 | 16 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
17 | 17 | <link rel="profile" href="http://gmpg.org/xfn/11"> |
18 | 18 | <?php if ( is_singular() && pings_open( get_queried_object() ) ) : ?> |
19 | | <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>"> |
| 19 | <link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>"> |
20 | 20 | <?php endif; ?> |
21 | 21 | <?php wp_head(); ?> |
22 | 22 | </head> |
diff --git a/src/wp-content/themes/twentyten/header.php b/src/wp-content/themes/twentyten/header.php
index 6c2ee4c..8afe43b 100644
a
|
b
|
if ( ( $paged >= 2 || $page >= 2 ) && ! is_404() ) { |
39 | 39 | </title> |
40 | 40 | <link rel="profile" href="http://gmpg.org/xfn/11" /> |
41 | 41 | <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" /> |
42 | | <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" /> |
| 42 | <link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>"> |
43 | 43 | <?php |
44 | 44 | /* |
45 | 45 | * We add some JavaScript to pages with the comment form |
diff --git a/src/wp-content/themes/twentythirteen/header.php b/src/wp-content/themes/twentythirteen/header.php
index 6253472..2495844 100644
a
|
b
|
|
23 | 23 | <meta name="viewport" content="width=device-width"> |
24 | 24 | <title><?php wp_title( '|', true, 'right' ); ?></title> |
25 | 25 | <link rel="profile" href="http://gmpg.org/xfn/11"> |
26 | | <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>"> |
| 26 | <link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>"> |
27 | 27 | <!--[if lt IE 9]> |
28 | 28 | <script src="<?php echo get_template_directory_uri(); ?>/js/html5.js"></script> |
29 | 29 | <![endif]--> |
diff --git a/src/wp-content/themes/twentytwelve/header.php b/src/wp-content/themes/twentytwelve/header.php
index 2b95b49..9e9c85d 100644
a
|
b
|
|
23 | 23 | <meta name="viewport" content="width=device-width" /> |
24 | 24 | <title><?php wp_title( '|', true, 'right' ); ?></title> |
25 | 25 | <link rel="profile" href="http://gmpg.org/xfn/11" /> |
26 | | <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" /> |
| 26 | <link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>"> |
27 | 27 | <?php // Loads HTML5 JavaScript file to add support for HTML5 elements in older IE versions. ?> |
28 | 28 | <!--[if lt IE 9]> |
29 | 29 | <script src="<?php echo get_template_directory_uri(); ?>/js/html5.js" type="text/javascript"></script> |