Ticket #27115: 27115-twenty-twelve.patch
File 27115-twenty-twelve.patch, 6.9 KB (added by , 11 years ago) |
---|
-
src/wp-content/themes/twentytwelve/archive.php
10 10 * has tag.php for Tag archives, category.php for Category archives, and 11 11 * author.php for Author archives. 12 12 * 13 * @link http ://codex.wordpress.org/Template_Hierarchy13 * @link https://codex.wordpress.org/Template_Hierarchy 14 14 * 15 15 * @package WordPress 16 16 * @subpackage Twenty_Twelve … … 60 60 </section><!-- #primary --> 61 61 62 62 <?php get_sidebar(); ?> 63 <?php get_footer(); ?> 64 No newline at end of file 63 <?php get_footer(); ?> -
src/wp-content/themes/twentytwelve/author.php
4 4 * 5 5 * Used to display archive-type pages for posts by an author. 6 6 * 7 * @link http ://codex.wordpress.org/Template_Hierarchy7 * @link https://codex.wordpress.org/Template_Hierarchy 8 8 * 9 9 * @package WordPress 10 10 * @subpackage Twenty_Twelve … … 81 81 </section><!-- #primary --> 82 82 83 83 <?php get_sidebar(); ?> 84 <?php get_footer(); ?> 85 No newline at end of file 84 <?php get_footer(); ?> -
src/wp-content/themes/twentytwelve/category.php
4 4 * 5 5 * Used to display archive-type pages for posts in a category. 6 6 * 7 * @link http ://codex.wordpress.org/Template_Hierarchy7 * @link https://codex.wordpress.org/Template_Hierarchy 8 8 * 9 9 * @package WordPress 10 10 * @subpackage Twenty_Twelve … … 48 48 </section><!-- #primary --> 49 49 50 50 <?php get_sidebar(); ?> 51 <?php get_footer(); ?> 52 No newline at end of file 51 <?php get_footer(); ?> -
src/wp-content/themes/twentytwelve/functions.php
6 6 * in the theme as custom template tags. Others are attached to action and 7 7 * filter hooks in WordPress to change core functionality. 8 8 * 9 * When using a child theme (see http ://codex.wordpress.org/Theme_Development and10 * http ://codex.wordpress.org/Child_Themes), you can override certain functions9 * When using a child theme (see https://codex.wordpress.org/Theme_Development and 10 * https://codex.wordpress.org/Child_Themes), you can override certain functions 11 11 * (those wrapped in a function_exists() call) by defining them first in your child theme's 12 12 * functions.php file. The child theme's functions.php file is included before the parent 13 13 * theme's file, so the child theme functions would be used. … … 15 15 * Functions that are not pluggable (not wrapped in function_exists()) are instead attached 16 16 * to a filter or action hook. 17 17 * 18 * For more information on hooks, actions, and filters, @link http ://codex.wordpress.org/Plugin_API18 * For more information on hooks, actions, and filters, @link https://codex.wordpress.org/Plugin_API 19 19 * 20 20 * @package WordPress 21 21 * @subpackage Twenty_Twelve -
src/wp-content/themes/twentytwelve/image.php
2 2 /** 3 3 * The template for displaying image attachments 4 4 * 5 * @link http ://codex.wordpress.org/Template_Hierarchy5 * @link https://codex.wordpress.org/Template_Hierarchy 6 6 * 7 7 * @package WordPress 8 8 * @subpackage Twenty_Twelve … … 113 113 </div><!-- #content --> 114 114 </div><!-- #primary --> 115 115 116 <?php get_footer(); ?> 117 No newline at end of file 116 <?php get_footer(); ?> -
src/wp-content/themes/twentytwelve/inc/custom-header.php
2 2 /** 3 3 * Implement an optional custom header for Twenty Twelve 4 4 * 5 * See http ://codex.wordpress.org/Custom_Headers5 * See https://codex.wordpress.org/Custom_Headers 6 6 * 7 7 * @package WordPress 8 8 * @subpackage Twenty_Twelve … … 162 162 <img src="<?php echo esc_url( $header_image ); ?>" class="header-image" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" /> 163 163 <?php endif; ?> 164 164 </div> 165 <?php } 166 No newline at end of file 165 <?php } -
src/wp-content/themes/twentytwelve/index.php
7 7 * It is used to display a page when nothing more specific matches a query. 8 8 * For example, it puts together the home page when no home.php file exists. 9 9 * 10 * @link http ://codex.wordpress.org/Template_Hierarchy10 * @link https://codex.wordpress.org/Template_Hierarchy 11 11 * 12 12 * @package WordPress 13 13 * @subpackage Twenty_Twelve … … 63 63 </div><!-- #primary --> 64 64 65 65 <?php get_sidebar(); ?> 66 <?php get_footer(); ?> 67 No newline at end of file 66 <?php get_footer(); ?> -
src/wp-content/themes/twentytwelve/rtl.css
4 4 It's easy, just a matter of overwriting all the horizontal positioning attributes 5 5 of your CSS stylesheet in a separate stylesheet file named rtl.css. 6 6 7 See http ://codex.wordpress.org/Right_to_Left_Language_Support7 See https://codex.wordpress.org/Right_to_Left_Language_Support 8 8 */ 9 9 10 10 … … 234 234 margin-right: 3.428571429rem; 235 235 margin-left: auto; 236 236 } 237 } 238 No newline at end of file 237 } -
src/wp-content/themes/twentytwelve/tag.php
4 4 * 5 5 * Used to display archive-type pages for posts in a tag. 6 6 * 7 * @link http ://codex.wordpress.org/Template_Hierarchy7 * @link https://codex.wordpress.org/Template_Hierarchy 8 8 * 9 9 * @package WordPress 10 10 * @subpackage Twenty_Twelve … … 49 49 </section><!-- #primary --> 50 50 51 51 <?php get_sidebar(); ?> 52 <?php get_footer(); ?> 53 No newline at end of file 52 <?php get_footer(); ?>