Changeset 11554
- Timestamp:
- 06/12/2009 03:20:16 AM (16 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-pages.php
r11458 r11554 107 107 <div class="wrap"> 108 108 <?php screen_icon(); ?> 109 <h2><?php echo esc_html( $title ); 109 <h2><?php echo esc_html( $title ); ?> <a href="page-new.php" class="button add-new-h2"><?php esc_html_e('Add New'); ?></a> <?php 110 110 if ( isset($_GET['s']) && $_GET['s'] ) 111 111 printf( '<span class="subtitle">' . __('Search results for “%s”') . '</span>', esc_html( get_search_query() ) ); ?> -
trunk/wp-admin/edit.php
r11383 r11554 97 97 <div class="wrap"> 98 98 <?php screen_icon(); ?> 99 <h2><?php echo esc_html( $title ); 99 <h2><?php echo esc_html( $title ); ?> <a href="post-new.php" class="button add-new-h2"><?php esc_html_e('Add New'); ?></a> <?php 100 100 if ( isset($_GET['s']) && $_GET['s'] ) 101 101 printf( '<span class="subtitle">' . __('Search results for “%s”') . '</span>', esc_html( get_search_query() ) ); ?> -
trunk/wp-admin/link-manager.php
r11450 r11554 72 72 <div class="wrap nosubsub"> 73 73 <?php screen_icon(); ?> 74 <h2><?php echo esc_html( $title ); 74 <h2><?php echo esc_html( $title ); ?> <a href="link-add.php" class="button add-new-h2"><?php esc_html_e('Add New'); ?></a> <?php 75 75 if ( isset($_GET['s']) && $_GET['s'] ) 76 76 printf( '<span class="subtitle">' . __('Search results for “%s”') . '</span>', esc_html( stripslashes($_GET['s']) ) ); ?> -
trunk/wp-admin/plugins.php
r11527 r11554 253 253 <div class="wrap"> 254 254 <?php screen_icon(); ?> 255 <h2><?php echo esc_html( $title ); ?> </h2>255 <h2><?php echo esc_html( $title ); ?> <a href="plugin-install.php" class="button add-new-h2"><?php esc_html_e('Add New'); ?></a></h2> 256 256 257 257 <?php -
trunk/wp-admin/themes.php
r11539 r11554 125 125 <div class="wrap"> 126 126 <?php screen_icon(); ?> 127 <h2><?php echo esc_html( $title ); ?> </h2>127 <h2><?php echo esc_html( $title ); ?> <a href="theme-install.php" class="button add-new-h2"><?php esc_html_e('Add New'); ?></a></h2> 128 128 129 129 <h3><?php _e('Current Theme'); ?></h3> -
trunk/wp-admin/upload.php
r11380 r11554 165 165 <div class="wrap"> 166 166 <?php screen_icon(); ?> 167 <h2><?php echo esc_html( $title ); 167 <h2><?php echo esc_html( $title ); ?> <a href="media-new.php" class="button add-new-h2"><?php esc_html_e('Add New'); ?></a> <?php 168 168 if ( isset($_GET['s']) && $_GET['s'] ) 169 169 printf( '<span class="subtitle">' . __('Search results for “%s”') . '</span>', esc_html( get_search_query() ) ); ?> -
trunk/wp-admin/users.php
r11380 r11554 240 240 <div class="wrap"> 241 241 <?php screen_icon(); ?> 242 <h2><?php echo esc_html( $title ); 242 <h2><?php echo esc_html( $title ); ?> <a href="user-new.php" class="button add-new-h2"><?php esc_html_e('Add New'); ?></a> <?php 243 243 if ( isset($_GET['usersearch']) && $_GET['usersearch'] ) 244 244 printf( '<span class="subtitle">' . __('Search results for “%s”') . '</span>', esc_html( $_GET['usersearch'] ) ); ?> -
trunk/wp-admin/wp-admin.css
r11546 r11554 3298 3298 border-radius: 5px; 3299 3299 } 3300 3301 .add-new-h2 { 3302 font-style: normal; 3303 margin: 0 6px; 3304 position: relative; 3305 top: -3px; 3306 }
Note: See TracChangeset
for help on using the changeset viewer.