Making WordPress.org

Changeset 8233


Ignore:
Timestamp:
02/12/2019 10:38:50 PM (5 years ago)
Author:
coffee2code
Message:

Developer: Update URLs in inline documentation to HTTPS where possible or to new URLs for those that now redirect.

Props umangvaghela123, coffee2code.
See #3120.

Location:
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/archive-command.php

    r6305 r8233  
    44 * The template for displaying Archive pages.
    55 *
    6  * Learn more: http://codex.wordpress.org/Template_Hierarchy
     6 * Learn more: https://developer.wordpress.org/themes/basics/template-hierarchy/
    77 *
    88 * @package wporg-developer
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/archive-plugin-handbook.php

    r872 r8233  
    44 * The template for displaying Archive pages.
    55 *
    6  * Learn more: http://codex.wordpress.org/Template_Hierarchy
     6 * Learn more: https://developer.wordpress.org/themes/basics/template-hierarchy/
    77 *
    88 * @package wporg-developer
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/archive-theme-handbook.php

    r872 r8233  
    44 * The template for displaying Archive pages.
    55 *
    6  * Learn more: http://codex.wordpress.org/Template_Hierarchy
     6 * Learn more: https://developer.wordpress.org/themes/basics/template-hierarchy/
    77 *
    88 * @package wporg-developer
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/archive.php

    r2966 r8233  
    44 * The template for displaying Archive pages.
    55 *
    6  * Learn more: http://codex.wordpress.org/Template_Hierarchy
     6 * Learn more: https://developer.wordpress.org/themes/basics/template-hierarchy/
    77 *
    88 * @package wporg-developer
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/content-none.php

    r742 r8233  
    33 * The template part for displaying a message that posts cannot be found.
    44 *
    5  * Learn more: http://codex.wordpress.org/Template_Hierarchy
     5 * Learn more: https://developer.wordpress.org/themes/basics/template-hierarchy/
    66 *
    77 * @package wporg-developer
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/inc/breadcrumb-trail.php

    r5432 r8233  
    1919 * @author    Justin Tadlock <justin@justintadlock.com>
    2020 * @copyright Copyright (c) 2008 - 2013, Justin Tadlock
    21  * @link      http://themehybrid.com/plugins/breadcrumb-trail
    22  * @license   http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
     21 * @link      https://themehybrid.com/plugins/breadcrumb-trail
     22 * @license   https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
    2323 */
    2424
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/inc/formatting.php

    r7844 r8233  
    8484     * Handles these six different types of links:
    8585     *
    86      * - {@link http://en.wikipedia.org/wiki/ISO_8601}
     86     * - {@link https://en.wikipedia.org/wiki/ISO_8601}
    8787     * - {@see WP_Rewrite::$index}
    8888     * - {@see WP_Query::query()}
    8989     * - {@see esc_attr()}
    9090     * - {@see 'pre_get_search_form'}
    91      * - {@link http://codex.wordpress.org/The_Loop Use new WordPress Loop}
     91     * - {@link https://codex.wordpress.org/The_Loop Use new WordPress Loop}
    9292     *
    9393     * Note: Though @see and @link are semantically different in meaning, that isn't always
     
    133133                    $parts = explode( ' ', $link, 2 );
    134134
    135                     // Link without linked text: {@link http://en.wikipedia.org/wiki/ISO_8601}
     135                    // Link without linked text: {@link https://en.wikipedia.org/wiki/ISO_8601}
    136136                    if ( 1 === count( $parts ) ) {
    137137                        $url = $text = $link;
    138138                    }
    139139
    140                     // Link with linked text: {@link http://codex.wordpress.org/The_Loop Use new WordPress Loop}
     140                    // Link with linked text: {@link https://codex.wordpress.org/The_Loop Use new WordPress Loop}
    141141                    else {
    142142                        $url = $parts[0];
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/inc/jetpack.php

    r554 r8233  
    22/**
    33 * Jetpack Compatibility File
    4  * See: http://jetpack.me/
     4 * See: https://jetpack.me/
    55 *
    66 * @package wporg-developer
     
    99/**
    1010 * Add theme support for Infinite Scroll.
    11  * See: http://jetpack.me/support/infinite-scroll/
     11 * See: https://jetpack.me/support/infinite-scroll/
    1212 */
    1313function wporg_developer_jetpack_setup() {
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/inc/loop-pagination.php

    r5432 r8233  
    1818 * @author    Justin Tadlock <justin@justintadlock.com>
    1919 * @copyright Copyright (c) 2010 - 2013, Justin Tadlock
    20  * @link      http://themehybrid.com/docs/tutorials/loop-pagination
    21  * @license   http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
     20 * @link      https://themehybrid.com/docs/loop-pagination
     21 * @license   https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
    2222 */
    2323
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/index.php

    r891 r8233  
    77 * It is used to display a page when nothing more specific matches a query.
    88 * E.g., it puts together the home page when no home.php file exists.
    9  * Learn more: http://codex.wordpress.org/Template_Hierarchy
     9 * Learn more: https://developer.wordpress.org/themes/basics/template-hierarchy/
    1010 *
    1111 * @package wporg-developer
Note: See TracChangeset for help on using the changeset viewer.