Changeset 39535
- Timestamp:
- 12/07/2016 06:47:47 PM (8 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/js/updates.js
r39140 r39535 2260 2260 $oldSubTitle.replaceWith( $subTitle ); 2261 2261 } else { 2262 $( '.w rap h1' ).append( $subTitle );2262 $( '.wp-header-end' ).before( $subTitle ); 2263 2263 } 2264 2264 -
trunk/src/wp-admin/plugins.php
r38958 r39535 492 492 493 493 <div class="wrap"> 494 <h1><?php echo esc_html( $title ); 494 <h1 class="wp-heading-inline"><?php 495 echo esc_html( $title ); 496 ?></h1> 497 498 <?php 495 499 if ( ( ! is_multisite() || is_network_admin() ) && current_user_can('install_plugins') ) { ?> 496 <a href="<?php echo self_admin_url( 'plugin-install.php' ); ?>" class="page-title-action"><?php echo esc_html_x('Add New', 'plugin'); ?></a>500 <a href="<?php echo self_admin_url( 'plugin-install.php' ); ?>" class="page-title-action"><?php echo esc_html_x( 'Add New', 'plugin' ); ?></a> 497 501 <?php 498 502 } … … 503 507 } 504 508 ?> 505 </h1> 509 510 <hr class="wp-header-end"> 506 511 507 512 <?php
Note: See TracChangeset
for help on using the changeset viewer.