Changeset 1138 for trunk/buddypress-theme/buddypress-home/archive.php
- Timestamp:
- 02/25/2009 03:53:13 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/buddypress-theme/buddypress-home/archive.php
r1052 r1138 30 30 31 31 <div class="navigation"> 32 <div class="alignleft"><?php next_posts_link( '« Previous Entries') ?></div>33 <div class="alignright"><?php previous_posts_link( 'Next Entries »') ?></div>32 <div class="alignleft"><?php next_posts_link( __( '« Previous Entries', 'buddypress' ) ) ?></div> 33 <div class="alignright"><?php previous_posts_link( __( 'Next Entries »', 'buddypress' ) ) ?></div> 34 34 </div> 35 35 36 36 <?php while (have_posts()) : the_post(); ?> 37 37 <div class="post"> 38 <h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title=" Permanent Link to<?php the_title(); ?>"><?php the_title(); ?></a></h3>38 <h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e( 'Permanent Link to', 'buddypress' ) ?> <?php the_title(); ?>"><?php the_title(); ?></a></h3> 39 39 <small><?php the_time('l, F jS, Y') ?></small> 40 40 … … 43 43 </div> 44 44 45 <p class="postmetadata"><?php _e( 'Posted in', 'buddypress' ) ?> <?php the_category(', ') ?> | <?php edit_post_link( 'Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>45 <p class="postmetadata"><?php _e( 'Posted in', 'buddypress' ) ?> <?php the_category(', ') ?> | <?php edit_post_link( __( 'Edit', 'buddypress' ), '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p> 46 46 47 47 </div> … … 50 50 51 51 <div class="navigation"> 52 <div class="alignleft"><?php next_posts_link( '« Previous Entries') ?></div>53 <div class="alignright"><?php previous_posts_link( 'Next Entries »') ?></div>52 <div class="alignleft"><?php next_posts_link( __( '« Previous Entries', 'buddypress' ) ) ?></div> 53 <div class="alignright"><?php previous_posts_link( __( 'Next Entries »', 'buddypress' ) ) ?></div> 54 54 </div> 55 55
Note: See TracChangeset
for help on using the changeset viewer.