Make WordPress Core

Ticket #30149: 30149.3.diff

File 30149.3.diff, 6.6 KB (added by MikeHansenMe, 10 years ago)

https: all the .org things

  • src/wp-content/themes/twentyfifteen/style.css

     
    11/*
    22Theme Name: Twenty Fifteen
    3 Theme URI: http://wordpress.org/themes/twentyfifteen
     3Theme URI: https://wordpress.org/themes/twentyfifteen
    44Author: the WordPress team
    5 Author URI: http://wordpress.org/
     5Author URI: https://wordpress.org/
    66Description: Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer.
    77Version: 0.1
    88License: GNU General Public License v2 or later
  • src/wp-content/themes/twentyfifteen/rtl.css

     
    44It's easy, just a matter of overwriting all the horizontal positioning attributes
    55of your CSS stylesheet in a separate stylesheet file named rtl.css.
    66
    7 See http://codex.wordpress.org/Right_to_Left_Language_Support
     7See https://codex.wordpress.org/Right_to_Left_Language_Support
    88*/
    99
    1010/**
  • src/wp-content/themes/twentyfifteen/content-none.php

     
    22/**
    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://codex.wordpress.org/Template_Hierarchy
    66 *
    77 * @package WordPress
    88 * @subpackage Twenty_Fifteen
  • src/wp-content/themes/twentyfifteen/index.php

     
    66 * and one of the two required files for a theme (the other being style.css).
    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://codex.wordpress.org/Template_Hierarchy
    1010 *
    11  * @link http://codex.wordpress.org/Template_Hierarchy
     11 * @link https://codex.wordpress.org/Template_Hierarchy
    1212 *
    1313 * @package WordPress
    1414 * @subpackage Twenty_Fifteen
  • src/wp-content/themes/twentyfifteen/functions.php

     
    1111 * functions.php file. The child theme's functions.php file is included before
    1212 * the parent theme's file, so the child theme functions would be used.
    1313 *
    14  * @link http://codex.wordpress.org/Theme_Development
    15  * @link http://codex.wordpress.org/Child_Themes
     14 * @link https://codex.wordpress.org/Theme_Development
     15 * @link https://codex.wordpress.org/Child_Themes
    1616 *
    1717 * Functions that are not pluggable (not wrapped in function_exists()) are
    1818 * instead attached to a filter or action hook.
    1919 *
    2020 * For more information on hooks, actions, and filters,
    21  * @link http://codex.wordpress.org/Plugin_API
     21 * @link https://codex.wordpress.org/Plugin_API
    2222 *
    2323 * @package WordPress
    2424 * @subpackage Twenty_Fifteen
     
    7575        /*
    7676         * Enable support for Post Thumbnails on posts and pages.
    7777         *
    78          * @link http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails
     78         * @link https://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails
    7979         */
    8080        add_theme_support( 'post-thumbnails' );
    8181        set_post_thumbnail_size( 825, 510, true );
     
    9696
    9797        /*
    9898         * Enable support for Post Formats.
    99          * See http://codex.wordpress.org/Post_Formats
     99         * See https://codex.wordpress.org/Post_Formats
    100100         */
    101101        add_theme_support( 'post-formats', array(
    102102                'aside', 'image', 'video', 'quote', 'link', 'gallery', 'status', 'audio', 'chat'
     
    125125 *
    126126 * @since Twenty Fifteen 1.0
    127127 *
    128  * @link http://codex.wordpress.org/Function_Reference/register_sidebar
     128 * @link https://codex.wordpress.org/Function_Reference/register_sidebar
    129129 */
    130130function twentyfifteen_widgets_init() {
    131131        register_sidebar( array(
  • src/wp-content/themes/twentyfifteen/content-search.php

     
    22/**
    33 * The template part for displaying results in search pages.
    44 *
    5  * Learn more: http://codex.wordpress.org/Template_Hierarchy
     5 * Learn more: https://codex.wordpress.org/Template_Hierarchy
    66 *
    77 * @package WordPress
    88 * @subpackage Twenty_Fifteen
  • src/wp-content/themes/twentyfifteen/archive.php

     
    1010 * already has tag.php for Tag archives, category.php for Category archives,
    1111 * and author.php for Author archives.
    1212 *
    13  * @link http://codex.wordpress.org/Template_Hierarchy
     13 * @link https://codex.wordpress.org/Template_Hierarchy
    1414 *
    1515 * @package WordPress
    1616 * @subpackage Twenty_Fifteen
  • src/wp-content/themes/twentyfifteen/footer.php

     
    2222                                 */
    2323                                do_action( 'twentyfifteen_credits' );
    2424                        ?>
    25                         <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentyfifteen' ) ); ?>"><?php printf( esc_html__( 'Proudly powered by %s', 'twentyfifteen' ), 'WordPress' ); ?></a>
     25                        <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyfifteen' ) ); ?>"><?php printf( esc_html__( 'Proudly powered by %s', 'twentyfifteen' ), 'WordPress' ); ?></a>
    2626                </div><!-- .site-info -->
    2727        </footer><!-- .site-footer -->
    2828</div><!-- .site -->