Changeset 14786 for trunk/wp-content/themes/twentyten/loop.php
- Timestamp:
- 05/21/2010 06:56:27 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/wp-content/themes/twentyten/loop.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentyten/loop.php
r14708 r14786 7 7 * http://codex.wordpress.org/Template_Tags to understand 8 8 * the tags used in it. 9 * 10 * This can be overridden in child themes with loop.php or 11 * loop-template.php, where 'template' is the loop context 12 * requested by a template. For example, loop-index.php would 13 * be used if it exists and we ask for the loop with: 14 * <code>get_template_part( 'loop', 'index' );</code> 9 15 * 10 16 * @package WordPress … … 69 75 ?> 70 76 <a class="size-thumbnail" href="<?php the_permalink(); ?>"><?php echo $image_img_tag; ?></a> 71 </div> 77 </div><!-- .gallery-thumb --> 72 78 <p><em><?php printf( __( 'This gallery contains <a %1$s>%2$s photos</a>.', 'twentyten' ), 73 79 'href="' . get_permalink() . '" title="' . sprintf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ) . '" rel="bookmark"', … … 83 89 <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span> 84 90 <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?> 85 </div><!-- #entry-utility -->86 </div> 91 </div><!-- .entry-utility --> 92 </div><!-- #post-## --> 87 93 88 94 <?php /* How to display posts in the asides category */ ?> … … 106 112 <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span> 107 113 <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?> 108 </div><!-- #entry-utility -->109 </div><!-- #post- (id)-->114 </div><!-- .entry-utility --> 115 </div><!-- #post-## --> 110 116 111 117 <?php /* How to display all other posts. */ ?> … … 148 154 <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span> 149 155 <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?> 150 </div><!-- #entry-utility -->156 </div><!-- .entry-utility --> 151 157 </div><!-- #post-<?php the_ID(); ?> --> 152 158
Note: See TracChangeset
for help on using the changeset viewer.