Ticket #27115: 27115-twenty-ten.patch
File 27115-twenty-ten.patch, 5.3 KB (added by , 10 years ago) |
---|
-
src/wp-content/themes/twentyten/archive.php
5 5 * Used to display archive-type pages if nothing more specific matches a query. 6 6 * For example, puts together date-based pages if no date.php file exists. 7 7 * 8 * @link http ://codex.wordpress.org/Template_Hierarchy8 * @link https://codex.wordpress.org/Template_Hierarchy 9 9 * 10 10 * @package WordPress 11 11 * @subpackage Twenty_Ten -
src/wp-content/themes/twentyten/functions.php
9 9 * The first function, twentyten_setup(), sets up the theme by registering support 10 10 * for various features in WordPress, such as post thumbnails, navigation menus, and the like. 11 11 * 12 * When using a child theme (see http ://codex.wordpress.org/Theme_Development and13 * http ://codex.wordpress.org/Child_Themes), you can override certain functions12 * 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 14 14 * (those wrapped in a function_exists() call) by defining them first in your child theme's 15 15 * functions.php file. The child theme's functions.php file is included before the parent 16 16 * theme's file, so the child theme functions would be used. … … 31 31 * } 32 32 * </code> 33 33 * 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. 35 35 * 36 36 * @package WordPress 37 37 * @subpackage Twenty_Ten -
src/wp-content/themes/twentyten/index.php
6 6 * and one of the two required files for a theme (the other being style.css). 7 7 * It is used to display a page when nothing more specific matches a query. 8 8 * E.g., it puts together the home page when no home.php file exists. 9 * Learn more: http ://codex.wordpress.org/Template_Hierarchy9 * Learn more: https://codex.wordpress.org/Template_Hierarchy 10 10 * 11 11 * @package WordPress 12 12 * @subpackage Twenty_Ten -
src/wp-content/themes/twentyten/loop-attachment.php
3 3 * The loop that displays an attachment 4 4 * 5 5 * The loop displays the posts and the post content. See 6 * http ://codex.wordpress.org/The_Loop to understand it and7 * http ://codex.wordpress.org/Template_Tags to understand6 * https://codex.wordpress.org/The_Loop to understand it and 7 * https://codex.wordpress.org/Template_Tags to understand 8 8 * the tags used in it. 9 9 * 10 10 * This can be overridden in child themes with loop-attachment.php. -
src/wp-content/themes/twentyten/loop-page.php
3 3 * The loop that displays a page 4 4 * 5 5 * The loop displays the posts and the post content. See 6 * http ://codex.wordpress.org/The_Loop to understand it and7 * http ://codex.wordpress.org/Template_Tags to understand6 * https://codex.wordpress.org/The_Loop to understand it and 7 * https://codex.wordpress.org/Template_Tags to understand 8 8 * the tags used in it. 9 9 * 10 10 * This can be overridden in child themes with loop-page.php. -
src/wp-content/themes/twentyten/loop-single.php
3 3 * The loop that displays a single post 4 4 * 5 5 * The loop displays the posts and the post content. See 6 * http ://codex.wordpress.org/The_Loop to understand it and7 * http ://codex.wordpress.org/Template_Tags to understand6 * https://codex.wordpress.org/The_Loop to understand it and 7 * https://codex.wordpress.org/Template_Tags to understand 8 8 * the tags used in it. 9 9 * 10 10 * This can be overridden in child themes with loop-single.php. -
src/wp-content/themes/twentyten/loop.php
3 3 * The loop that displays posts 4 4 * 5 5 * The loop displays the posts and the post content. See 6 * http ://codex.wordpress.org/The_Loop to understand it and7 * http ://codex.wordpress.org/Template_Tags to understand6 * https://codex.wordpress.org/The_Loop to understand it and 7 * https://codex.wordpress.org/Template_Tags to understand 8 8 * the tags used in it. 9 9 * 10 10 * This can be overridden in child themes with loop.php or