Ticket #41836: 41836.diff
| File 41836.diff, 7.8 KB (added by , 8 years ago) |
|---|
-
src/wp-content/themes/twentyfourteen/archive.php
50 50 51 51 /* 52 52 * Include the post format-specific template for the content. If you want to 53 * use this in a child theme, then include a file called c alled content-___.php53 * use this in a child theme, then include a file called content-___.php 54 54 * (where ___ is the post format) and that will be used instead. 55 55 */ 56 56 get_template_part( 'content', get_post_format() ); -
src/wp-content/themes/twentyfourteen/author.php
49 49 50 50 /* 51 51 * Include the post format-specific template for the content. If you want to 52 * use this in a child theme, then include a file called c alled content-___.php52 * use this in a child theme, then include a file called content-___.php 53 53 * (where ___ is the post format) and that will be used instead. 54 54 */ 55 55 get_template_part( 'content', get_post_format() ); -
src/wp-content/themes/twentyfourteen/category.php
34 34 35 35 /* 36 36 * Include the post format-specific template for the content. If you want to 37 * use this in a child theme, then include a file called c alled content-___.php37 * use this in a child theme, then include a file called content-___.php 38 38 * (where ___ is the post format) and that will be used instead. 39 39 */ 40 40 get_template_part( 'content', get_post_format() ); -
src/wp-content/themes/twentyfourteen/index.php
35 35 36 36 /* 37 37 * Include the post format-specific template for the content. If you want to 38 * use this in a child theme, then include a file called c alled content-___.php38 * use this in a child theme, then include a file called content-___.php 39 39 * (where ___ is the post format) and that will be used instead. 40 40 */ 41 41 get_template_part( 'content', get_post_format() ); -
src/wp-content/themes/twentyfourteen/search.php
24 24 25 25 /* 26 26 * Include the post format-specific template for the content. If you want to 27 * use this in a child theme, then include a file called c alled content-___.php27 * use this in a child theme, then include a file called content-___.php 28 28 * (where ___ is the post format) and that will be used instead. 29 29 */ 30 30 get_template_part( 'content', get_post_format() ); -
src/wp-content/themes/twentyfourteen/single.php
17 17 18 18 /* 19 19 * Include the post format-specific template for the content. If you want to 20 * use this in a child theme, then include a file called c alled content-___.php20 * use this in a child theme, then include a file called content-___.php 21 21 * (where ___ is the post format) and that will be used instead. 22 22 */ 23 23 get_template_part( 'content', get_post_format() ); -
src/wp-content/themes/twentyfourteen/tag.php
36 36 37 37 /* 38 38 * Include the post format-specific template for the content. If you want to 39 * use this in a child theme, then include a file called c alled content-___.php39 * use this in a child theme, then include a file called content-___.php 40 40 * (where ___ is the post format) and that will be used instead. 41 41 */ 42 42 get_template_part( 'content', get_post_format() ); -
src/wp-content/themes/twentyfourteen/taxonomy-post_format.php
61 61 62 62 /* 63 63 * Include the post format-specific template for the content. If you want to 64 * use this in a child theme, then include a file called c alled content-___.php64 * use this in a child theme, then include a file called content-___.php 65 65 * (where ___ is the post format) and that will be used instead. 66 66 */ 67 67 get_template_part( 'content', get_post_format() ); -
src/wp-content/themes/twentyten/footer.php
17 17 18 18 <?php 19 19 /* 20 * A sidebar in the footer? Yep. You can c an customize20 * A sidebar in the footer? Yep. You can customize 21 21 * your footer with four columns of widgets. 22 22 */ 23 23 get_sidebar( 'footer' ); -
src/wp-content/themes/twentytwelve/archive.php
42 42 while ( have_posts() ) : the_post(); 43 43 44 44 /* Include the post format-specific template for the content. If you want to 45 * this in a child theme then include a file called c alled content-___.php45 * this in a child theme then include a file called content-___.php 46 46 * (where ___ is the post format) and that will be used instead. 47 47 */ 48 48 get_template_part( 'content', get_post_format() ); -
src/wp-content/themes/twentytwelve/category.php
30 30 while ( have_posts() ) : the_post(); 31 31 32 32 /* Include the post format-specific template for the content. If you want to 33 * this in a child theme then include a file called c alled content-___.php33 * this in a child theme then include a file called content-___.php 34 34 * (where ___ is the post format) and that will be used instead. 35 35 */ 36 36 get_template_part( 'content', get_post_format() ); -
src/wp-content/themes/twentytwelve/tag.php
31 31 32 32 /* 33 33 * Include the post format-specific template for the content. If you want to 34 * this in a child theme then include a file called c alled content-___.php34 * this in a child theme then include a file called content-___.php 35 35 * (where ___ is the post format) and that will be used instead. 36 36 */ 37 37 get_template_part( 'content', get_post_format() );