Changeset 44500
- Timestamp:
- 01/09/2019 06:10:13 AM (6 years ago)
- Location:
- trunk/src/wp-content/themes
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyeleven/header.php
r43571 r44500 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> -
trunk/src/wp-content/themes/twentyfifteen/header.php
r43571 r44500 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> -
trunk/src/wp-content/themes/twentyfourteen/header.php
r43571 r44500 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> -
trunk/src/wp-content/themes/twentyseventeen/functions.php
r44479 r44500 411 411 function twentyseventeen_pingback_header() { 412 412 if ( is_singular() && pings_open() ) { 413 printf( '<link rel="pingback" href="%s">' . "\n", get_bloginfo( 'pingback_url') );413 printf( '<link rel="pingback" href="%s">' . "\n", esc_url( get_bloginfo( 'pingback_url' ) ) ); 414 414 } 415 415 } -
trunk/src/wp-content/themes/twentysixteen/header.php
r43571 r44500 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(); ?> -
trunk/src/wp-content/themes/twentyten/header.php
r43571 r44500 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 /* -
trunk/src/wp-content/themes/twentythirteen/header.php
r43571 r44500 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> -
trunk/src/wp-content/themes/twentytwelve/header.php
r43571 r44500 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]>
Note: See TracChangeset
for help on using the changeset viewer.