Make WordPress Core

Changeset 48290


Ignore:
Timestamp:
07/03/2020 11:40:45 PM (4 years ago)
Author:
SergeyBiryukov
Message:

Bundled Themes: Use HTTPS for XHTML Friends Network URL.

Props raajtram, jrf, passoniate, bookdude13, sabernhardt, audrasjb.
See #48002.

Location:
trunk/src
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyeleven/header.php

    r47808 r48290  
    4949?>
    5050    </title>
    51 <link rel="profile" href="http://gmpg.org/xfn/11" />
     51<link rel="profile" href="https://gmpg.org/xfn/11" />
    5252<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>?ver=20190507" />
    5353<link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>">
  • trunk/src/wp-content/themes/twentyfifteen/header.php

    r45768 r48290  
    1414    <meta charset="<?php bloginfo( 'charset' ); ?>">
    1515    <meta name="viewport" content="width=device-width">
    16     <link rel="profile" href="http://gmpg.org/xfn/11">
     16    <link rel="profile" href="https://gmpg.org/xfn/11">
    1717    <link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>">
    1818    <!--[if lt IE 9]>
  • trunk/src/wp-content/themes/twentyfourteen/header.php

    r45768 r48290  
    2323    <meta name="viewport" content="width=device-width">
    2424    <title><?php wp_title( '|', true, 'right' ); ?></title>
    25     <link rel="profile" href="http://gmpg.org/xfn/11">
     25    <link rel="profile" href="https://gmpg.org/xfn/11">
    2626    <link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>">
    2727    <!--[if lt IE 9]>
  • trunk/src/wp-content/themes/twentyseventeen/header.php

    r46827 r48290  
    1818<meta charset="<?php bloginfo( 'charset' ); ?>">
    1919<meta name="viewport" content="width=device-width, initial-scale=1">
    20 <link rel="profile" href="http://gmpg.org/xfn/11">
     20<link rel="profile" href="https://gmpg.org/xfn/11">
    2121
    2222<?php wp_head(); ?>
  • trunk/src/wp-content/themes/twentysixteen/header.php

    r45042 r48290  
    1515    <meta charset="<?php bloginfo( 'charset' ); ?>">
    1616    <meta name="viewport" content="width=device-width, initial-scale=1">
    17     <link rel="profile" href="http://gmpg.org/xfn/11">
     17    <link rel="profile" href="https://gmpg.org/xfn/11">
    1818    <?php if ( is_singular() && pings_open( get_queried_object() ) ) : ?>
    1919    <link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>">
  • trunk/src/wp-content/themes/twentyten/header.php

    r47122 r48290  
    3939?>
    4040    </title>
    41 <link rel="profile" href="http://gmpg.org/xfn/11" />
     41<link rel="profile" href="https://gmpg.org/xfn/11" />
    4242<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>?ver=20190507" />
    4343<link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>">
  • trunk/src/wp-content/themes/twentythirteen/header.php

    r45768 r48290  
    2323    <meta name="viewport" content="width=device-width">
    2424    <title><?php wp_title( '|', true, 'right' ); ?></title>
    25     <link rel="profile" href="http://gmpg.org/xfn/11">
     25    <link rel="profile" href="https://gmpg.org/xfn/11">
    2626    <link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>">
    2727    <!--[if lt IE 9]>
  • trunk/src/wp-content/themes/twentytwelve/header.php

    r45768 r48290  
    2323<meta name="viewport" content="width=device-width" />
    2424<title><?php wp_title( '|', true, 'right' ); ?></title>
    25 <link rel="profile" href="http://gmpg.org/xfn/11" />
     25<link rel="profile" href="https://gmpg.org/xfn/11" />
    2626<link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>">
    2727<?php // Loads HTML5 JavaScript file to add support for HTML5 elements in older IE versions. ?>
  • trunk/src/wp-includes/theme-compat/header.php

    r48126 r48290  
    1919<html <?php language_attributes(); ?>>
    2020<head>
    21 <link rel="profile" href="http://gmpg.org/xfn/11" />
     21<link rel="profile" href="https://gmpg.org/xfn/11" />
    2222<meta http-equiv="Content-Type" content="<?php bloginfo( 'html_type' ); ?>; charset=<?php bloginfo( 'charset' ); ?>" />
    2323
Note: See TracChangeset for help on using the changeset viewer.