diff --git a/src/wp-admin/edit-link-form.php b/src/wp-admin/edit-link-form.php
index ffa452e98f..261d891e9d 100644
|
a
|
b
|
get_current_screen()->add_help_tab(
|
| 67 | 67 | 'content' => |
| 68 | 68 | '<p>' . __( 'You can add or edit links on this screen by entering information in each of the boxes. Only the link’s web address and name (the text you want to display on your site as the link) are required fields.' ) . '</p>' . |
| 69 | 69 | '<p>' . __( 'The boxes for link name, web address, and description have fixed positions, while the others may be repositioned using drag and drop. You can also hide boxes you don’t use in the Screen Options tab, or minimize boxes by clicking on the title bar of the box.' ) . '</p>' . |
| 70 | | '<p>' . __( 'XFN stands for <a href="http://gmpg.org/xfn/">XHTML Friends Network</a>, which is optional. WordPress allows the generation of XFN attributes to show how you are related to the authors/owners of the site to which you are linking.' ) . '</p>', |
| | 70 | '<p>' . __( 'XFN stands for <a href="https://gmpg.org/xfn/">XHTML Friends Network</a>, which is optional. WordPress allows the generation of XFN attributes to show how you are related to the authors/owners of the site to which you are linking.' ) . '</p>', |
| 71 | 71 | ) |
| 72 | 72 | ); |
| 73 | 73 | |
| … |
… |
wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false );
|
| 122 | 122 | <h2><label for="link_url"><?php _e( 'Web Address' ); ?></label></h2> |
| 123 | 123 | <div class="inside"> |
| 124 | 124 | <input type="text" name="link_url" size="30" maxlength="255" class="code" value="<?php echo esc_attr( $link->link_url ); ?>" id="link_url" /> |
| 125 | | <p><?php _e( 'Example: <code>http://wordpress.org/</code> — don’t forget the <code>http://</code>' ); ?></p> |
| | 125 | <p><?php _e( 'Example: <code>https://wordpress.org/</code> — don’t forget the <code>https://</code>' ); ?></p> |
| 126 | 126 | </div> |
| 127 | 127 | </div> |
| 128 | 128 | |
diff --git a/src/wp-admin/includes/class-wp-theme-install-list-table.php b/src/wp-admin/includes/class-wp-theme-install-list-table.php
index e5e0ee4ebe..98eb212b26 100644
|
a
|
b
|
class WP_Theme_Install_List_Table extends WP_Themes_List_Table {
|
| 250 | 250 | * @type string $slug Theme slug, e.g. 'twentytwenty'. |
| 251 | 251 | * @type string $version Theme version, e.g. '1.1'. |
| 252 | 252 | * @type string $author Theme author username, e.g. 'melchoyce'. |
| 253 | | * @type string $preview_url Preview URL, e.g. 'http://2020.wordpress.net/'. |
| | 253 | * @type string $preview_url Preview URL, e.g. 'https://2020.wordpress.net/'. |
| 254 | 254 | * @type string $screenshot_url Screenshot URL, e.g. 'https://wordpress.org/themes/twentytwenty/'. |
| 255 | 255 | * @type float $rating Rating score. |
| 256 | 256 | * @type int $num_ratings The number of ratings. |
diff --git a/src/wp-admin/includes/meta-boxes.php b/src/wp-admin/includes/meta-boxes.php
index b937e7e5f4..504d950f53 100644
|
a
|
b
|
function link_xfn_meta_box( $link ) {
|
| 1228 | 1228 | ?> |
| 1229 | 1229 | <table class="links-table"> |
| 1230 | 1230 | <tr> |
| 1231 | | <th scope="row"><label for="link_rel"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'rel:' ); ?></label></th> |
| | 1231 | <th scope="row"><label for="link_rel"><?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'rel:' ); ?></label></th> |
| 1232 | 1232 | <td><input type="text" name="link_rel" id="link_rel" value="<?php echo ( isset( $link->link_rel ) ? esc_attr( $link->link_rel ) : '' ); ?>" /></td> |
| 1233 | 1233 | </tr> |
| 1234 | 1234 | <tr> |
| 1235 | | <th scope="row"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'identity' ); ?></th> |
| 1236 | | <td><fieldset><legend class="screen-reader-text"><span><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'identity' ); ?></span></legend> |
| | 1235 | <th scope="row"><?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'identity' ); ?></th> |
| | 1236 | <td><fieldset><legend class="screen-reader-text"><span><?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'identity' ); ?></span></legend> |
| 1237 | 1237 | <label for="me"> |
| 1238 | 1238 | <input type="checkbox" name="identity" value="me" id="me" <?php xfn_check( 'identity', 'me' ); ?> /> |
| 1239 | 1239 | <?php _e( 'another web address of mine' ); ?></label> |
| 1240 | 1240 | </fieldset></td> |
| 1241 | 1241 | </tr> |
| 1242 | 1242 | <tr> |
| 1243 | | <th scope="row"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'friendship' ); ?></th> |
| 1244 | | <td><fieldset><legend class="screen-reader-text"><span><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'friendship' ); ?></span></legend> |
| | 1243 | <th scope="row"><?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'friendship' ); ?></th> |
| | 1244 | <td><fieldset><legend class="screen-reader-text"><span><?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'friendship' ); ?></span></legend> |
| 1245 | 1245 | <label for="contact"> |
| 1246 | | <input class="valinp" type="radio" name="friendship" value="contact" id="contact" <?php xfn_check( 'friendship', 'contact' ); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'contact' ); ?> |
| | 1246 | <input class="valinp" type="radio" name="friendship" value="contact" id="contact" <?php xfn_check( 'friendship', 'contact' ); ?> /> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'contact' ); ?> |
| 1247 | 1247 | </label> |
| 1248 | 1248 | <label for="acquaintance"> |
| 1249 | | <input class="valinp" type="radio" name="friendship" value="acquaintance" id="acquaintance" <?php xfn_check( 'friendship', 'acquaintance' ); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'acquaintance' ); ?> |
| | 1249 | <input class="valinp" type="radio" name="friendship" value="acquaintance" id="acquaintance" <?php xfn_check( 'friendship', 'acquaintance' ); ?> /> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'acquaintance' ); ?> |
| 1250 | 1250 | </label> |
| 1251 | 1251 | <label for="friend"> |
| 1252 | | <input class="valinp" type="radio" name="friendship" value="friend" id="friend" <?php xfn_check( 'friendship', 'friend' ); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'friend' ); ?> |
| | 1252 | <input class="valinp" type="radio" name="friendship" value="friend" id="friend" <?php xfn_check( 'friendship', 'friend' ); ?> /> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'friend' ); ?> |
| 1253 | 1253 | </label> |
| 1254 | 1254 | <label for="friendship"> |
| 1255 | | <input name="friendship" type="radio" class="valinp" value="" id="friendship" <?php xfn_check( 'friendship' ); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'none' ); ?> |
| | 1255 | <input name="friendship" type="radio" class="valinp" value="" id="friendship" <?php xfn_check( 'friendship' ); ?> /> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'none' ); ?> |
| 1256 | 1256 | </label> |
| 1257 | 1257 | </fieldset></td> |
| 1258 | 1258 | </tr> |
| 1259 | 1259 | <tr> |
| 1260 | | <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'physical' ); ?> </th> |
| 1261 | | <td><fieldset><legend class="screen-reader-text"><span><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'physical' ); ?></span></legend> |
| | 1260 | <th scope="row"> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'physical' ); ?> </th> |
| | 1261 | <td><fieldset><legend class="screen-reader-text"><span><?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'physical' ); ?></span></legend> |
| 1262 | 1262 | <label for="met"> |
| 1263 | | <input class="valinp" type="checkbox" name="physical" value="met" id="met" <?php xfn_check( 'physical', 'met' ); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'met' ); ?> |
| | 1263 | <input class="valinp" type="checkbox" name="physical" value="met" id="met" <?php xfn_check( 'physical', 'met' ); ?> /> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'met' ); ?> |
| 1264 | 1264 | </label> |
| 1265 | 1265 | </fieldset></td> |
| 1266 | 1266 | </tr> |
| 1267 | 1267 | <tr> |
| 1268 | | <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'professional' ); ?> </th> |
| 1269 | | <td><fieldset><legend class="screen-reader-text"><span><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'professional' ); ?></span></legend> |
| | 1268 | <th scope="row"> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'professional' ); ?> </th> |
| | 1269 | <td><fieldset><legend class="screen-reader-text"><span><?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'professional' ); ?></span></legend> |
| 1270 | 1270 | <label for="co-worker"> |
| 1271 | | <input class="valinp" type="checkbox" name="professional" value="co-worker" id="co-worker" <?php xfn_check( 'professional', 'co-worker' ); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'co-worker' ); ?> |
| | 1271 | <input class="valinp" type="checkbox" name="professional" value="co-worker" id="co-worker" <?php xfn_check( 'professional', 'co-worker' ); ?> /> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'co-worker' ); ?> |
| 1272 | 1272 | </label> |
| 1273 | 1273 | <label for="colleague"> |
| 1274 | | <input class="valinp" type="checkbox" name="professional" value="colleague" id="colleague" <?php xfn_check( 'professional', 'colleague' ); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'colleague' ); ?> |
| | 1274 | <input class="valinp" type="checkbox" name="professional" value="colleague" id="colleague" <?php xfn_check( 'professional', 'colleague' ); ?> /> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'colleague' ); ?> |
| 1275 | 1275 | </label> |
| 1276 | 1276 | </fieldset></td> |
| 1277 | 1277 | </tr> |
| 1278 | 1278 | <tr> |
| 1279 | | <th scope="row"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'geographical' ); ?></th> |
| 1280 | | <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'geographical' ); ?> </span></legend> |
| | 1279 | <th scope="row"><?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'geographical' ); ?></th> |
| | 1280 | <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'geographical' ); ?> </span></legend> |
| 1281 | 1281 | <label for="co-resident"> |
| 1282 | | <input class="valinp" type="radio" name="geographical" value="co-resident" id="co-resident" <?php xfn_check( 'geographical', 'co-resident' ); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'co-resident' ); ?> |
| | 1282 | <input class="valinp" type="radio" name="geographical" value="co-resident" id="co-resident" <?php xfn_check( 'geographical', 'co-resident' ); ?> /> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'co-resident' ); ?> |
| 1283 | 1283 | </label> |
| 1284 | 1284 | <label for="neighbor"> |
| 1285 | | <input class="valinp" type="radio" name="geographical" value="neighbor" id="neighbor" <?php xfn_check( 'geographical', 'neighbor' ); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'neighbor' ); ?> |
| | 1285 | <input class="valinp" type="radio" name="geographical" value="neighbor" id="neighbor" <?php xfn_check( 'geographical', 'neighbor' ); ?> /> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'neighbor' ); ?> |
| 1286 | 1286 | </label> |
| 1287 | 1287 | <label for="geographical"> |
| 1288 | | <input class="valinp" type="radio" name="geographical" value="" id="geographical" <?php xfn_check( 'geographical' ); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'none' ); ?> |
| | 1288 | <input class="valinp" type="radio" name="geographical" value="" id="geographical" <?php xfn_check( 'geographical' ); ?> /> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'none' ); ?> |
| 1289 | 1289 | </label> |
| 1290 | 1290 | </fieldset></td> |
| 1291 | 1291 | </tr> |
| 1292 | 1292 | <tr> |
| 1293 | | <th scope="row"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'family' ); ?></th> |
| 1294 | | <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'family' ); ?> </span></legend> |
| | 1293 | <th scope="row"><?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'family' ); ?></th> |
| | 1294 | <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'family' ); ?> </span></legend> |
| 1295 | 1295 | <label for="child"> |
| 1296 | | <input class="valinp" type="radio" name="family" value="child" id="child" <?php xfn_check( 'family', 'child' ); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'child' ); ?> |
| | 1296 | <input class="valinp" type="radio" name="family" value="child" id="child" <?php xfn_check( 'family', 'child' ); ?> /> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'child' ); ?> |
| 1297 | 1297 | </label> |
| 1298 | 1298 | <label for="kin"> |
| 1299 | | <input class="valinp" type="radio" name="family" value="kin" id="kin" <?php xfn_check( 'family', 'kin' ); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'kin' ); ?> |
| | 1299 | <input class="valinp" type="radio" name="family" value="kin" id="kin" <?php xfn_check( 'family', 'kin' ); ?> /> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'kin' ); ?> |
| 1300 | 1300 | </label> |
| 1301 | 1301 | <label for="parent"> |
| 1302 | | <input class="valinp" type="radio" name="family" value="parent" id="parent" <?php xfn_check( 'family', 'parent' ); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'parent' ); ?> |
| | 1302 | <input class="valinp" type="radio" name="family" value="parent" id="parent" <?php xfn_check( 'family', 'parent' ); ?> /> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'parent' ); ?> |
| 1303 | 1303 | </label> |
| 1304 | 1304 | <label for="sibling"> |
| 1305 | | <input class="valinp" type="radio" name="family" value="sibling" id="sibling" <?php xfn_check( 'family', 'sibling' ); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'sibling' ); ?> |
| | 1305 | <input class="valinp" type="radio" name="family" value="sibling" id="sibling" <?php xfn_check( 'family', 'sibling' ); ?> /> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'sibling' ); ?> |
| 1306 | 1306 | </label> |
| 1307 | 1307 | <label for="spouse"> |
| 1308 | | <input class="valinp" type="radio" name="family" value="spouse" id="spouse" <?php xfn_check( 'family', 'spouse' ); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'spouse' ); ?> |
| | 1308 | <input class="valinp" type="radio" name="family" value="spouse" id="spouse" <?php xfn_check( 'family', 'spouse' ); ?> /> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'spouse' ); ?> |
| 1309 | 1309 | </label> |
| 1310 | 1310 | <label for="family"> |
| 1311 | | <input class="valinp" type="radio" name="family" value="" id="family" <?php xfn_check( 'family' ); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'none' ); ?> |
| | 1311 | <input class="valinp" type="radio" name="family" value="" id="family" <?php xfn_check( 'family' ); ?> /> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'none' ); ?> |
| 1312 | 1312 | </label> |
| 1313 | 1313 | </fieldset></td> |
| 1314 | 1314 | </tr> |
| 1315 | 1315 | <tr> |
| 1316 | | <th scope="row"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'romantic' ); ?></th> |
| 1317 | | <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'romantic' ); ?> </span></legend> |
| | 1316 | <th scope="row"><?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'romantic' ); ?></th> |
| | 1317 | <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'romantic' ); ?> </span></legend> |
| 1318 | 1318 | <label for="muse"> |
| 1319 | | <input class="valinp" type="checkbox" name="romantic" value="muse" id="muse" <?php xfn_check( 'romantic', 'muse' ); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'muse' ); ?> |
| | 1319 | <input class="valinp" type="checkbox" name="romantic" value="muse" id="muse" <?php xfn_check( 'romantic', 'muse' ); ?> /> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'muse' ); ?> |
| 1320 | 1320 | </label> |
| 1321 | 1321 | <label for="crush"> |
| 1322 | | <input class="valinp" type="checkbox" name="romantic" value="crush" id="crush" <?php xfn_check( 'romantic', 'crush' ); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'crush' ); ?> |
| | 1322 | <input class="valinp" type="checkbox" name="romantic" value="crush" id="crush" <?php xfn_check( 'romantic', 'crush' ); ?> /> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'crush' ); ?> |
| 1323 | 1323 | </label> |
| 1324 | 1324 | <label for="date"> |
| 1325 | | <input class="valinp" type="checkbox" name="romantic" value="date" id="date" <?php xfn_check( 'romantic', 'date' ); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'date' ); ?> |
| | 1325 | <input class="valinp" type="checkbox" name="romantic" value="date" id="date" <?php xfn_check( 'romantic', 'date' ); ?> /> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'date' ); ?> |
| 1326 | 1326 | </label> |
| 1327 | 1327 | <label for="romantic"> |
| 1328 | | <input class="valinp" type="checkbox" name="romantic" value="sweetheart" id="romantic" <?php xfn_check( 'romantic', 'sweetheart' ); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'sweetheart' ); ?> |
| | 1328 | <input class="valinp" type="checkbox" name="romantic" value="sweetheart" id="romantic" <?php xfn_check( 'romantic', 'sweetheart' ); ?> /> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'sweetheart' ); ?> |
| 1329 | 1329 | </label> |
| 1330 | 1330 | </fieldset></td> |
| 1331 | 1331 | </tr> |
| 1332 | 1332 | |
| 1333 | 1333 | </table> |
| 1334 | | <p><?php _e( 'If the link is to a person, you can specify your relationship with them using the above form. If you would like to learn more about the idea check out <a href="http://gmpg.org/xfn/">XFN</a>.' ); ?></p> |
| | 1334 | <p><?php _e( 'If the link is to a person, you can specify your relationship with them using the above form. If you would like to learn more about the idea check out <a href="https://gmpg.org/xfn/">XFN</a>.' ); ?></p> |
| 1335 | 1335 | <?php |
| 1336 | 1336 | } |
| 1337 | 1337 | |
diff --git a/src/wp-content/themes/twentyeleven/header.php b/src/wp-content/themes/twentyeleven/header.php
index 2d69a0bc8b..1bfb2781b1 100644
|
a
|
b
|
if ( ( $paged >= 2 || $page >= 2 ) && ! is_404() ) {
|
| 48 | 48 | |
| 49 | 49 | ?> |
| 50 | 50 | </title> |
| 51 | | <link rel="profile" href="http://gmpg.org/xfn/11" /> |
| | 51 | <link rel="profile" href="https://gmpg.org/xfn/11" /> |
| 52 | 52 | <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>?ver=20190507" /> |
| 53 | 53 | <link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>"> |
| 54 | 54 | <!--[if lt IE 9]> |
diff --git a/src/wp-content/themes/twentyfifteen/header.php b/src/wp-content/themes/twentyfifteen/header.php
index 5ad5051877..614cca89e2 100644
|
a
|
b
|
|
| 13 | 13 | <head> |
| 14 | 14 | <meta charset="<?php bloginfo( 'charset' ); ?>"> |
| 15 | 15 | <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"> |
| 17 | 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?ver=3.7.0"></script> |
diff --git a/src/wp-content/themes/twentyfourteen/header.php b/src/wp-content/themes/twentyfourteen/header.php
index 21d1a546cb..4bedca640f 100644
|
a
|
b
|
|
| 22 | 22 | <meta charset="<?php bloginfo( 'charset' ); ?>"> |
| 23 | 23 | <meta name="viewport" content="width=device-width"> |
| 24 | 24 | <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"> |
| 26 | 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?ver=3.7.0"></script> |
diff --git a/src/wp-content/themes/twentyseventeen/header.php b/src/wp-content/themes/twentyseventeen/header.php
index 9ea7aa5be8..c041fd0779 100644
|
a
|
b
|
|
| 17 | 17 | <head> |
| 18 | 18 | <meta charset="<?php bloginfo( 'charset' ); ?>"> |
| 19 | 19 | <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"> |
| 21 | 21 | |
| 22 | 22 | <?php wp_head(); ?> |
| 23 | 23 | </head> |
diff --git a/src/wp-content/themes/twentysixteen/header.php b/src/wp-content/themes/twentysixteen/header.php
index a5cfee6a47..28c587857b 100644
|
a
|
b
|
|
| 14 | 14 | <head> |
| 15 | 15 | <meta charset="<?php bloginfo( 'charset' ); ?>"> |
| 16 | 16 | <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"> |
| 18 | 18 | <?php if ( is_singular() && pings_open( get_queried_object() ) ) : ?> |
| 19 | 19 | <link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>"> |
| 20 | 20 | <?php endif; ?> |
diff --git a/src/wp-content/themes/twentyten/header.php b/src/wp-content/themes/twentyten/header.php
index 0349d0489c..17dd16c7a5 100644
|
a
|
b
|
if ( ( $paged >= 2 || $page >= 2 ) && ! is_404() ) {
|
| 38 | 38 | |
| 39 | 39 | ?> |
| 40 | 40 | </title> |
| 41 | | <link rel="profile" href="http://gmpg.org/xfn/11" /> |
| | 41 | <link rel="profile" href="https://gmpg.org/xfn/11" /> |
| 42 | 42 | <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>?ver=20190507" /> |
| 43 | 43 | <link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>"> |
| 44 | 44 | <?php |
diff --git a/src/wp-content/themes/twentythirteen/header.php b/src/wp-content/themes/twentythirteen/header.php
index 92c54e94ad..7fdf9c791b 100644
|
a
|
b
|
|
| 22 | 22 | <meta charset="<?php bloginfo( 'charset' ); ?>"> |
| 23 | 23 | <meta name="viewport" content="width=device-width"> |
| 24 | 24 | <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"> |
| 26 | 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?ver=3.7.0"></script> |
diff --git a/src/wp-content/themes/twentytwelve/header.php b/src/wp-content/themes/twentytwelve/header.php
index 2888cd8ee3..8f15a76176 100644
|
a
|
b
|
|
| 22 | 22 | <meta charset="<?php bloginfo( 'charset' ); ?>" /> |
| 23 | 23 | <meta name="viewport" content="width=device-width" /> |
| 24 | 24 | <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" /> |
| 26 | 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]> |
diff --git a/src/wp-includes/theme-compat/header.php b/src/wp-includes/theme-compat/header.php
index 59aa3c9fc8..daa0088d23 100644
|
a
|
b
|
_deprecated_file(
|
| 18 | 18 | <!DOCTYPE html> |
| 19 | 19 | <html <?php language_attributes(); ?>> |
| 20 | 20 | <head> |
| 21 | | <link rel="profile" href="http://gmpg.org/xfn/11" /> |
| | 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 | 24 | <title><?php echo wp_get_document_title(); ?></title> |