Changeset 4223
- Timestamp:
- 04/21/2011 09:26:34 PM (12 years ago)
- Location:
- trunk/bp-themes/bp-default
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-themes/bp-default/_inc/css/default.css
r4213 r4223 2127 2127 } 2128 2128 2129 p.date span, 2130 .post-utility { 2131 font-style: italic; 2132 } 2133 2129 2134 p.date, 2130 2135 p.postmetadata { -
trunk/bp-themes/bp-default/archive.php
r4126 r4223 27 27 <div class="author-box"> 28 28 <?php echo get_avatar( get_the_author_meta( 'user_email' ), '50' ); ?> 29 <p><?php printf( _ _( 'by %s', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></p>29 <p><?php printf( _x( 'by %s', 'Post written by...', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></p> 30 30 </div> 31 31 … … 33 33 <h2 class="posttitle"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e( 'Permanent Link to', 'buddypress' ) ?> <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> 34 34 35 <p class="date"><?php echo get_the_date() ?> <em><?php _e( 'in', 'buddypress' ) ?> <?php the_category(', ') ?> <?php printf( __( 'by %s', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></em></p>35 <p class="date"><?php printf( __( '%1$s <span>in %2$s by %3$s</span>', 'buddypress' ), get_the_date(), get_the_category_list( ', ' ), bp_core_get_userlink( $post->post_author ) ); ?></p> 36 36 37 37 <div class="entry"> -
trunk/bp-themes/bp-default/index.php
r4126 r4223 18 18 <div class="author-box"> 19 19 <?php echo get_avatar( get_the_author_meta( 'user_email' ), '50' ); ?> 20 <p><?php printf( _ _( 'by %s', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></p>20 <p><?php printf( _x( 'by %s', 'Post written by...', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></p> 21 21 </div> 22 22 … … 24 24 <h2 class="posttitle"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e( 'Permanent Link to', 'buddypress' ) ?> <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> 25 25 26 <p class="date"><?php echo get_the_date() ?> <em><?php _e( 'in', 'buddypress' ) ?> <?php the_category(', ') ?> <?php printf( __( 'by %s', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></em></p>26 <p class="date"><?php printf( __( '%1$s <span>in %2$s by %3$s</span>', 'buddypress' ), get_the_date(), get_the_category_list( ', ' ), bp_core_get_userlink( $post->post_author ) ); ?></p> 27 27 28 28 <div class="entry"> -
trunk/bp-themes/bp-default/search.php
r4126 r4223 27 27 <div class="author-box"> 28 28 <?php echo get_avatar( get_the_author_meta( 'email' ), '50' ); ?> 29 <p><?php printf( _ _( 'by %s', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></p>29 <p><?php printf( _x( 'by %s', 'Post written by...', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></p> 30 30 </div> 31 31 … … 33 33 <h2 class="posttitle"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e( 'Permanent Link to', 'buddypress' ) ?> <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> 34 34 35 <p class="date"><?php echo get_the_date() ?> <em><?php _e( 'in', 'buddypress' ) ?> <?php the_category(', ') ?> <?php printf( __( 'by %s', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></em></p>35 <p class="date"><?php printf( __( '%1$s <span>in %2$s by %3$s</span>', 'buddypress' ), get_the_date(), get_the_category_list( ', ' ), bp_core_get_userlink( $post->post_author ) ); ?></p> 36 36 37 37 <div class="entry"> -
trunk/bp-themes/bp-default/single.php
r4185 r4223 14 14 <div class="author-box"> 15 15 <?php echo get_avatar( get_the_author_meta( 'user_email' ), '50' ); ?> 16 <p><?php printf( _ _( 'by %s', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></p>16 <p><?php printf( _x( 'by %s', 'Post written by...', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></p> 17 17 </div> 18 18 … … 20 20 <h2 class="posttitle"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e( 'Permanent Link to', 'buddypress' ) ?> <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> 21 21 22 <p class="date"><?php echo get_the_date() ?> <em><?php _e( 'in', 'buddypress' ) ?> <?php the_category(', ') ?> <?php printf( __( 'by %s', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></em> <?php edit_post_link( __( 'Edit this entry', 'buddypress' ), '<em class="edit-link">', '</em>' ); ?></p> 22 <p class="date"> 23 <?php printf( __( '%1$s <span>in %2$s by %3$s</span>', 'buddypress' ), get_the_date(), get_the_category_list( ', ' ), bp_core_get_userlink( $post->post_author ) ); ?> 24 <span class="post-utility alignright"><?php edit_post_link( __( 'Edit this entry', 'buddypress' ) ); ?></span> 25 </p> 23 26 24 27 <div class="entry">
Note: See TracChangeset
for help on using the changeset viewer.