Ticket #47225: 47225.patch
File 47225.patch, 2.0 KB (added by , 6 years ago) |
---|
-
wp-admin/site-health-info.php
46 46 </div> 47 47 48 48 <nav class="health-check-tabs-wrapper hide-if-no-js" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>"> 49 <?php 50 /** This action is documented in wp-admin/site-health.php */ 51 do_action( 'site_health_before_tabs' ); 52 ?> 53 49 54 <a href="<?php echo esc_url( admin_url( 'site-health.php' ) ); ?>" class="health-check-tab"> 50 55 <?php 51 56 /* translators: tab heading for Site Health Status page */ … … 59 64 _ex( 'Info', 'Site Health' ); 60 65 ?> 61 66 </a> 67 68 <?php 69 /** This action is documented in wp-admin/site-health.php */ 70 do_action( 'site_health_after_tabs' ); 71 ?> 62 72 </nav> 63 73 </div> 64 74 -
wp-admin/site-health.php
51 51 </div> 52 52 53 53 <nav class="health-check-tabs-wrapper hide-if-no-js" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>"> 54 <?php 55 /** 56 * Fires before the first navigation item in Site Health screen. 57 * 58 * Allow developers to add new Site Health tabs before the default items. 59 * 60 * @since 5.3.0 61 */ 62 do_action( 'site_health_before_tabs' ); 63 ?> 64 54 65 <a href="<?php echo esc_url( admin_url( 'site-health.php' ) ); ?>" class="health-check-tab active" aria-current="true"> 55 66 <?php _e( 'Status' ); ?> 56 67 </a> … … 58 69 <a href="<?php echo esc_url( admin_url( 'site-health.php?tab=debug' ) ); ?>" class="health-check-tab"> 59 70 <?php _e( 'Info' ); ?> 60 71 </a> 72 73 <?php 74 /** 75 * Fires after the last navigation item in Site Health screen. 76 * 77 * Allow developers to add new Site Health tabs after the default items. 78 * 79 * @since 5.3.0 80 */ 81 do_action( 'site_health_after_tabs' ); 82 ?> 61 83 </nav> 62 84 </div> 63 85