diff --git a/src/wp-admin/edit-link-form.php b/src/wp-admin/edit-link-form.php
index d0db1df..c8a9cb2 100644
|
a
|
b
|
get_current_screen()->add_help_tab(
|
| 64 | 64 | 'content' => |
| 65 | 65 | '<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>' . |
| 66 | 66 | '<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>' . |
| 67 | | '<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>', |
| | 67 | '<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>', |
| 68 | 68 | ) |
| 69 | 69 | ); |
| 70 | 70 | |
diff --git a/src/wp-admin/includes/meta-boxes.php b/src/wp-admin/includes/meta-boxes.php
index a8d39ec..34144eb 100644
|
a
|
b
|
function link_xfn_meta_box( $link ) {
|
| 1176 | 1176 | ?> |
| 1177 | 1177 | <table class="links-table"> |
| 1178 | 1178 | <tr> |
| 1179 | | <th scope="row"><label for="link_rel"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'rel:' ); ?></label></th> |
| | 1179 | <th scope="row"><label for="link_rel"><?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'rel:' ); ?></label></th> |
| 1180 | 1180 | <td><input type="text" name="link_rel" id="link_rel" value="<?php echo ( isset( $link->link_rel ) ? esc_attr( $link->link_rel ) : '' ); ?>" /></td> |
| 1181 | 1181 | </tr> |
| 1182 | 1182 | <tr> |
| 1183 | | <th scope="row"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'identity' ); ?></th> |
| 1184 | | <td><fieldset><legend class="screen-reader-text"><span><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'identity' ); ?></span></legend> |
| | 1183 | <th scope="row"><?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'identity' ); ?></th> |
| | 1184 | <td><fieldset><legend class="screen-reader-text"><span><?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'identity' ); ?></span></legend> |
| 1185 | 1185 | <label for="me"> |
| 1186 | 1186 | <input type="checkbox" name="identity" value="me" id="me" <?php xfn_check( 'identity', 'me' ); ?> /> |
| 1187 | 1187 | <?php _e( 'another web address of mine' ); ?></label> |
| 1188 | 1188 | </fieldset></td> |
| 1189 | 1189 | </tr> |
| 1190 | 1190 | <tr> |
| 1191 | | <th scope="row"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'friendship' ); ?></th> |
| 1192 | | <td><fieldset><legend class="screen-reader-text"><span><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'friendship' ); ?></span></legend> |
| | 1191 | <th scope="row"><?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'friendship' ); ?></th> |
| | 1192 | <td><fieldset><legend class="screen-reader-text"><span><?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'friendship' ); ?></span></legend> |
| 1193 | 1193 | <label for="contact"> |
| 1194 | | <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' ); ?> |
| | 1194 | <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' ); ?> |
| 1195 | 1195 | </label> |
| 1196 | 1196 | <label for="acquaintance"> |
| 1197 | | <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' ); ?> |
| | 1197 | <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' ); ?> |
| 1198 | 1198 | </label> |
| 1199 | 1199 | <label for="friend"> |
| 1200 | | <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' ); ?> |
| | 1200 | <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' ); ?> |
| 1201 | 1201 | </label> |
| 1202 | 1202 | <label for="friendship"> |
| 1203 | | <input name="friendship" type="radio" class="valinp" value="" id="friendship" <?php xfn_check( 'friendship' ); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'none' ); ?> |
| | 1203 | <input name="friendship" type="radio" class="valinp" value="" id="friendship" <?php xfn_check( 'friendship' ); ?> /> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'none' ); ?> |
| 1204 | 1204 | </label> |
| 1205 | 1205 | </fieldset></td> |
| 1206 | 1206 | </tr> |
| 1207 | 1207 | <tr> |
| 1208 | | <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'physical' ); ?> </th> |
| 1209 | | <td><fieldset><legend class="screen-reader-text"><span><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'physical' ); ?></span></legend> |
| | 1208 | <th scope="row"> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'physical' ); ?> </th> |
| | 1209 | <td><fieldset><legend class="screen-reader-text"><span><?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'physical' ); ?></span></legend> |
| 1210 | 1210 | <label for="met"> |
| 1211 | | <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' ); ?> |
| | 1211 | <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' ); ?> |
| 1212 | 1212 | </label> |
| 1213 | 1213 | </fieldset></td> |
| 1214 | 1214 | </tr> |
| 1215 | 1215 | <tr> |
| 1216 | | <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'professional' ); ?> </th> |
| 1217 | | <td><fieldset><legend class="screen-reader-text"><span><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'professional' ); ?></span></legend> |
| | 1216 | <th scope="row"> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'professional' ); ?> </th> |
| | 1217 | <td><fieldset><legend class="screen-reader-text"><span><?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'professional' ); ?></span></legend> |
| 1218 | 1218 | <label for="co-worker"> |
| 1219 | | <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' ); ?> |
| | 1219 | <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' ); ?> |
| 1220 | 1220 | </label> |
| 1221 | 1221 | <label for="colleague"> |
| 1222 | | <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' ); ?> |
| | 1222 | <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' ); ?> |
| 1223 | 1223 | </label> |
| 1224 | 1224 | </fieldset></td> |
| 1225 | 1225 | </tr> |
| 1226 | 1226 | <tr> |
| 1227 | | <th scope="row"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'geographical' ); ?></th> |
| 1228 | | <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'geographical' ); ?> </span></legend> |
| | 1227 | <th scope="row"><?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'geographical' ); ?></th> |
| | 1228 | <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'geographical' ); ?> </span></legend> |
| 1229 | 1229 | <label for="co-resident"> |
| 1230 | | <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' ); ?> |
| | 1230 | <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' ); ?> |
| 1231 | 1231 | </label> |
| 1232 | 1232 | <label for="neighbor"> |
| 1233 | | <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' ); ?> |
| | 1233 | <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' ); ?> |
| 1234 | 1234 | </label> |
| 1235 | 1235 | <label for="geographical"> |
| 1236 | | <input class="valinp" type="radio" name="geographical" value="" id="geographical" <?php xfn_check( 'geographical' ); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'none' ); ?> |
| | 1236 | <input class="valinp" type="radio" name="geographical" value="" id="geographical" <?php xfn_check( 'geographical' ); ?> /> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'none' ); ?> |
| 1237 | 1237 | </label> |
| 1238 | 1238 | </fieldset></td> |
| 1239 | 1239 | </tr> |
| 1240 | 1240 | <tr> |
| 1241 | | <th scope="row"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'family' ); ?></th> |
| 1242 | | <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'family' ); ?> </span></legend> |
| | 1241 | <th scope="row"><?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'family' ); ?></th> |
| | 1242 | <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'family' ); ?> </span></legend> |
| 1243 | 1243 | <label for="child"> |
| 1244 | | <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' ); ?> |
| | 1244 | <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' ); ?> |
| 1245 | 1245 | </label> |
| 1246 | 1246 | <label for="kin"> |
| 1247 | | <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' ); ?> |
| | 1247 | <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' ); ?> |
| 1248 | 1248 | </label> |
| 1249 | 1249 | <label for="parent"> |
| 1250 | | <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' ); ?> |
| | 1250 | <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' ); ?> |
| 1251 | 1251 | </label> |
| 1252 | 1252 | <label for="sibling"> |
| 1253 | | <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' ); ?> |
| | 1253 | <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' ); ?> |
| 1254 | 1254 | </label> |
| 1255 | 1255 | <label for="spouse"> |
| 1256 | | <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' ); ?> |
| | 1256 | <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' ); ?> |
| 1257 | 1257 | </label> |
| 1258 | 1258 | <label for="family"> |
| 1259 | | <input class="valinp" type="radio" name="family" value="" id="family" <?php xfn_check( 'family' ); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'none' ); ?> |
| | 1259 | <input class="valinp" type="radio" name="family" value="" id="family" <?php xfn_check( 'family' ); ?> /> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'none' ); ?> |
| 1260 | 1260 | </label> |
| 1261 | 1261 | </fieldset></td> |
| 1262 | 1262 | </tr> |
| 1263 | 1263 | <tr> |
| 1264 | | <th scope="row"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'romantic' ); ?></th> |
| 1265 | | <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e( 'romantic' ); ?> </span></legend> |
| | 1264 | <th scope="row"><?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'romantic' ); ?></th> |
| | 1265 | <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: https://gmpg.org/xfn/ */ _e( 'romantic' ); ?> </span></legend> |
| 1266 | 1266 | <label for="muse"> |
| 1267 | | <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' ); ?> |
| | 1267 | <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' ); ?> |
| 1268 | 1268 | </label> |
| 1269 | 1269 | <label for="crush"> |
| 1270 | | <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' ); ?> |
| | 1270 | <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' ); ?> |
| 1271 | 1271 | </label> |
| 1272 | 1272 | <label for="date"> |
| 1273 | | <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' ); ?> |
| | 1273 | <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' ); ?> |
| 1274 | 1274 | </label> |
| 1275 | 1275 | <label for="romantic"> |
| 1276 | | <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' ); ?> |
| | 1276 | <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' ); ?> |
| 1277 | 1277 | </label> |
| 1278 | 1278 | </fieldset></td> |
| 1279 | 1279 | </tr> |
| 1280 | 1280 | |
| 1281 | 1281 | </table> |
| 1282 | | <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> |
| | 1282 | <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> |
| 1283 | 1283 | <?php |
| 1284 | 1284 | } |
| 1285 | 1285 | |
diff --git a/src/wp-content/themes/twentyeleven/header.php b/src/wp-content/themes/twentyeleven/header.php
index df8f7ee..403f26e 100644
|
a
|
b
|
if ( ( $paged >= 2 || $page >= 2 ) && ! is_404() ) {
|
| 47 | 47 | |
| 48 | 48 | ?> |
| 49 | 49 | </title> |
| 50 | | <link rel="profile" href="http://gmpg.org/xfn/11" /> |
| | 50 | <link rel="profile" href="https://gmpg.org/xfn/11" /> |
| 51 | 51 | <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" /> |
| 52 | 52 | <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" /> |
| 53 | 53 | <!--[if lt IE 9]> |
diff --git a/src/wp-content/themes/twentyfifteen/header.php b/src/wp-content/themes/twentyfifteen/header.php
index a088d85..f348e24 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 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> |
diff --git a/src/wp-content/themes/twentyfourteen/header.php b/src/wp-content/themes/twentyfourteen/header.php
index 4dec164..b5d2864 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 bloginfo( 'pingback_url' ); ?>"> |
| 27 | 27 | <!--[if lt IE 9]> |
| 28 | 28 | <script src="<?php echo get_template_directory_uri(); ?>/js/html5.js"></script> |
diff --git a/src/wp-content/themes/twentysixteen/header.php b/src/wp-content/themes/twentysixteen/header.php
index 9bc0d3e..afd2ab9 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 bloginfo( 'pingback_url' ); ?>"> |
| 20 | 20 | <?php endif; ?> |
diff --git a/src/wp-content/themes/twentytwelve/header.php b/src/wp-content/themes/twentytwelve/header.php
index 2b95b49..747ed6f 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 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 cd92145..e357efa 100644
|
a
|
b
|
_deprecated_file(
|
| 18 | 18 | <!DOCTYPE html> |
| 19 | 19 | <html xmlns="http://www.w3.org/1999/xhtml" <?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> |