Make WordPress Core


Ignore:
Timestamp:
07/13/2015 12:26:21 AM (9 years ago)
Author:
jeremyfelt
Message:

Network Admin: Improved header information in Edit Site tabs.

  • Use the site's name rather than URL in the Edit Site header.
  • Provide "Visit" and "Dashboard" links for the site on all tabs.

Props @Fab1en, @jeremyfelt.
Fixes #32525.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/network/site-users.php

    r33145 r33186  
    162162add_screen_option( 'per_page' );
    163163
    164 $site_url_no_http = preg_replace( '#^http(s)?://#', '', get_blogaddress_by_id( $id ) );
    165 $title_site_url_linked = sprintf( __( 'Edit Site: %s' ), '<a href="' . get_blogaddress_by_id( $id ) . '">' . $site_url_no_http . '</a>' );
    166 $title = sprintf( __( 'Edit Site: %s' ), $site_url_no_http );
     164$title = sprintf( __( 'Edit Site: %s' ), esc_html( $details->blogname ) );
    167165
    168166$parent_file = 'sites.php';
     
    187185
    188186<div class="wrap">
    189 <h1 id="edit-site"><?php echo $title_site_url_linked; ?></h1>
     187<h1 id="edit-site"><?php echo $title; ?></h1>
     188<p class="edit-site-actions"><a href="<?php echo esc_url( get_home_url( $id ) ); ?>">Visit</a> | <a href="<?php echo esc_url( get_admin_url( $id ) ); ?>">Dashboard</a></p>
    190189<h3 class="nav-tab-wrapper">
    191190<?php
Note: See TracChangeset for help on using the changeset viewer.