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-info.php

    r33144 r33186  
    130130}
    131131
    132 $site_url_no_http = preg_replace( '#^http(s)?://#', '', get_blogaddress_by_id( $id ) );
    133 $title_site_url_linked = sprintf( __( 'Edit Site: %s' ), '<a href="' . get_blogaddress_by_id( $id ) . '">' . $site_url_no_http . '</a>' );
    134 $title = sprintf( __( 'Edit Site: %s' ), $site_url_no_http );
     132$title = sprintf( __( 'Edit Site: %s' ), esc_html( $details->blogname ) );
    135133
    136134$parent_file = 'sites.php';
     
    142140
    143141<div class="wrap">
    144 <h1 id="edit-site"><?php echo $title_site_url_linked; ?></h1>
     142<h1 id="edit-site"><?php echo $title; ?></h1>
     143<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>
    145144<h3 class="nav-tab-wrapper">
    146145<?php
Note: See TracChangeset for help on using the changeset viewer.