Make WordPress Core


Ignore:
Timestamp:
07/13/2015 12:26:21 AM (8 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-settings.php

    r33144 r33186  
    8080}
    8181
    82 $site_url_no_http = preg_replace( '#^http(s)?://#', '', get_blogaddress_by_id( $id ) );
    83 $title_site_url_linked = sprintf( __( 'Edit Site: %s' ), '<a href="' . get_blogaddress_by_id( $id ) . '">' . $site_url_no_http . '</a>' );
    84 $title = sprintf( __( 'Edit Site: %s' ), $site_url_no_http );
     82$title = sprintf( __( 'Edit Site: %s' ), esc_html( $details->blogname ) );
    8583
    8684$parent_file = 'sites.php';
     
    9290
    9391<div class="wrap">
    94 <h1 id="edit-site"><?php echo $title_site_url_linked; ?></h1>
     92<h1 id="edit-site"><?php echo $title; ?></h1>
     93<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>
    9594<h3 class="nav-tab-wrapper">
    9695<?php
Note: See TracChangeset for help on using the changeset viewer.