Make WordPress Core

Ticket #27115: 27115-twenty-ten.patch

File 27115-twenty-ten.patch, 5.3 KB (added by netweb, 10 years ago)
  • src/wp-content/themes/twentyten/archive.php

     
    55 * Used to display archive-type pages if nothing more specific matches a query.
    66 * For example, puts together date-based pages if no date.php file exists.
    77 *
    8  * @link http://codex.wordpress.org/Template_Hierarchy
     8 * @link https://codex.wordpress.org/Template_Hierarchy
    99 *
    1010 * @package WordPress
    1111 * @subpackage Twenty_Ten
  • src/wp-content/themes/twentyten/functions.php

     
    99 * The first function, twentyten_setup(), sets up the theme by registering support
    1010 * for various features in WordPress, such as post thumbnails, navigation menus, and the like.
    1111 *
    12  * When using a child theme (see http://codex.wordpress.org/Theme_Development and
    13  * http://codex.wordpress.org/Child_Themes), you can override certain functions
     12 * When using a child theme (see https://codex.wordpress.org/Theme_Development and
     13 * https://codex.wordpress.org/Child_Themes), you can override certain functions
    1414 * (those wrapped in a function_exists() call) by defining them first in your child theme's
    1515 * functions.php file. The child theme's functions.php file is included before the parent
    1616 * theme's file, so the child theme functions would be used.
     
    3131 * }
    3232 * </code>
    3333 *
    34  * For more information on hooks, actions, and filters, see http://codex.wordpress.org/Plugin_API.
     34 * For more information on hooks, actions, and filters, see https://codex.wordpress.org/Plugin_API.
    3535 *
    3636 * @package WordPress
    3737 * @subpackage Twenty_Ten
  • src/wp-content/themes/twentyten/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 *
    1111 * @package WordPress
    1212 * @subpackage Twenty_Ten
  • src/wp-content/themes/twentyten/loop-attachment.php

     
    33 * The loop that displays an attachment
    44 *
    55 * The loop displays the posts and the post content. See
    6  * http://codex.wordpress.org/The_Loop to understand it and
    7  * http://codex.wordpress.org/Template_Tags to understand
     6 * https://codex.wordpress.org/The_Loop to understand it and
     7 * https://codex.wordpress.org/Template_Tags to understand
    88 * the tags used in it.
    99 *
    1010 * This can be overridden in child themes with loop-attachment.php.
  • src/wp-content/themes/twentyten/loop-page.php

     
    33 * The loop that displays a page
    44 *
    55 * The loop displays the posts and the post content. See
    6  * http://codex.wordpress.org/The_Loop to understand it and
    7  * http://codex.wordpress.org/Template_Tags to understand
     6 * https://codex.wordpress.org/The_Loop to understand it and
     7 * https://codex.wordpress.org/Template_Tags to understand
    88 * the tags used in it.
    99 *
    1010 * This can be overridden in child themes with loop-page.php.
  • src/wp-content/themes/twentyten/loop-single.php

     
    33 * The loop that displays a single post
    44 *
    55 * The loop displays the posts and the post content. See
    6  * http://codex.wordpress.org/The_Loop to understand it and
    7  * http://codex.wordpress.org/Template_Tags to understand
     6 * https://codex.wordpress.org/The_Loop to understand it and
     7 * https://codex.wordpress.org/Template_Tags to understand
    88 * the tags used in it.
    99 *
    1010 * This can be overridden in child themes with loop-single.php.
  • src/wp-content/themes/twentyten/loop.php

     
    33 * The loop that displays posts
    44 *
    55 * The loop displays the posts and the post content. See
    6  * http://codex.wordpress.org/The_Loop to understand it and
    7  * http://codex.wordpress.org/Template_Tags to understand
     6 * https://codex.wordpress.org/The_Loop to understand it and
     7 * https://codex.wordpress.org/Template_Tags to understand
    88 * the tags used in it.
    99 *
    1010 * This can be overridden in child themes with loop.php or