Ticket #17198: 17198.docs.diff
File 17198.docs.diff, 3.4 KB (added by , 12 years ago) |
---|
-
wp-content/themes/twentyeleven/archive.php
58 58 <?php 59 59 /* Include the Post-Format-specific template for the content. 60 60 * If you want to overload this in a child theme then include a file 61 * called loop-___.php (where ___ is the Post Format name) and that will be used instead.61 * called content-___.php (where ___ is the Post Format name) and that will be used instead. 62 62 */ 63 63 get_template_part( 'content', get_post_format() ); 64 64 ?> -
wp-content/themes/twentyeleven/author.php
57 57 <?php 58 58 /* Include the Post-Format-specific template for the content. 59 59 * If you want to overload this in a child theme then include a file 60 * called loop-___.php (where ___ is the Post Format name) and that will be used instead.60 * called content-___.php (where ___ is the Post Format name) and that will be used instead. 61 61 */ 62 62 get_template_part( 'content', get_post_format() ); 63 63 ?> -
wp-content/themes/twentyeleven/category.php
28 28 <?php 29 29 /* Include the Post-Format-specific template for the content. 30 30 * If you want to overload this in a child theme then include a file 31 * called loop-___.php (where ___ is the Post Format name) and that will be used instead.31 * called content-___.php (where ___ is the Post Format name) and that will be used instead. 32 32 */ 33 33 get_template_part( 'content', get_post_format() ); 34 34 ?> -
wp-content/themes/twentyeleven/search.php
26 26 <?php 27 27 /* Include the Post-Format-specific template for the content. 28 28 * If you want to overload this in a child theme then include a file 29 * called loop-___.php (where ___ is the Post Format name) and that will be used instead.29 * called content-___.php (where ___ is the Post Format name) and that will be used instead. 30 30 */ 31 31 get_template_part( 'content', get_post_format() ); 32 32 ?> -
wp-content/themes/twentyeleven/tag.php
30 30 <?php 31 31 /* Include the Post-Format-specific template for the content. 32 32 * If you want to overload this in a child theme then include a file 33 * called loop-___.php (where ___ is the Post Format name) and that will be used instead.33 * called content-___.php (where ___ is the Post Format name) and that will be used instead. 34 34 */ 35 35 get_template_part( 'content', get_post_format() ); 36 36 ?>