Ticket #48002: 48002.5.diff
| File 48002.5.diff, 9.3 KB (added by , 6 years ago) |
|---|
-
src/wp-admin/edit-link-form.php
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 … … 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 -
src/wp-admin/includes/class-wp-theme-install-list-table.php
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. -
src/wp-admin/includes/meta-boxes.php
1316 1316 </tr> 1317 1317 1318 1318 </table> 1319 <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>1319 <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> 1320 1320 <?php 1321 1321 } 1322 1322 -
src/wp-content/themes/twentyeleven/header.php
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]> -
src/wp-content/themes/twentyfifteen/header.php
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> -
src/wp-content/themes/twentyfourteen/header.php
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> -
src/wp-content/themes/twentyseventeen/header.php
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> -
src/wp-content/themes/twentysixteen/header.php
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; ?> -
src/wp-content/themes/twentyten/header.php
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 -
src/wp-content/themes/twentythirteen/header.php
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> -
src/wp-content/themes/twentytwelve/header.php
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]> -
src/wp-includes/theme-compat/header.php
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>
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)