Changeset 35455 for trunk/src/wp-includes/theme-compat/comments.php
- Timestamp:
- 10/30/2015 10:37:09 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/theme-compat/comments.php
r34316 r35455 8 8 * 9 9 */ 10 _deprecated_file( sprintf( __( 'Theme without %1$s' ), basename(__FILE__) ), '3.0', null, sprintf( __('Please include a %1$s template in your theme.'), basename(__FILE__) ) ); 10 _deprecated_file( 11 /* translators: %s: template name */ 12 sprintf( __( 'Theme without %s' ), basename( __FILE__ ) ), 13 '3.0', 14 null, 15 /* translators: %s: template name */ 16 sprintf( __( 'Please include a %s template in your theme.' ), basename( __FILE__ ) ) 17 ); 11 18 12 19 // Do not delete these lines … … 80 87 <?php if ( is_user_logged_in() ) : ?> 81 88 82 <p><?php printf(__('Logged in as <a href="%1$s">%2$s</a>.'), get_edit_user_link(), $user_identity); ?> <a href="<?php echo wp_logout_url(get_permalink()); ?>" title="<?php esc_attr_e('Log out of this account'); ?>"><?php _e('Log out »'); ?></a></p> 89 <p><?php /* translators: %s: user profile link */ 90 printf( __( 'Logged in as %s.' ), sprintf( '<a href="%1$s">%2$s</a>', get_edit_user_link(), $user_identity ) ); ?> 91 <a href="<?php echo wp_logout_url( get_permalink() ); ?>" title="<?php esc_attr_e( 'Log out of this account' ); ?>"><?php _e( 'Log out »' ); ?></a></p> 83 92 84 93 <?php else : ?>
Note: See TracChangeset
for help on using the changeset viewer.