Make WordPress Core


Ignore:
Timestamp:
11/19/2014 08:27:09 PM (12 years ago)
Author:
iandstewart
Message:

Twenty Fifteen: doc cleanup, addresses removing periods from file header summaries, some spacing, loop documentation, and https instead of http.

Props DrewAPicture, MikeHansenMe, see #30149.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyfifteen/functions.php

    r30302 r30394  
    11<?php
    22/**
    3  * Twenty Fifteen functions and definitions.
     3 * Twenty Fifteen functions and definitions
    44 *
    55 * Set up the theme and provides some helper functions, which are used in the
     
    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
     
    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
     
    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         * See: https://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails
    7979         */
    8080        add_theme_support( 'post-thumbnails' );
     
    9797        /*
    9898         * Enable support for Post Formats.
    99          * See http://codex.wordpress.org/Post_Formats
     99         *
     100         * See: https://codex.wordpress.org/Post_Formats
    100101         */
    101102        add_theme_support( 'post-formats', array(
     
    126127 * @since Twenty Fifteen 1.0
    127128 *
    128  * @link http://codex.wordpress.org/Function_Reference/register_sidebar
     129 * @link https://codex.wordpress.org/Function_Reference/register_sidebar
    129130 */
    130131function twentyfifteen_widgets_init() {
Note: See TracChangeset for help on using the changeset viewer.