Hide tabs on site admin themes screen for multisite. See #15525

git-svn-id: https://develop.svn.wordpress.org/trunk@16754 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Pete Mall 2010-12-06 18:15:27 +00:00
parent ac42794bb0
commit 240bb52f78
1 changed files with 10 additions and 8 deletions

View File

@ -71,16 +71,18 @@ require_once('./admin-header.php');
<div id="message3" class="updated"><p><?php _e('Theme deleted.') ?></p></div>
<?php endif; ?>
<div class="wrap">
<?php screen_icon(); ?>
<div class="wrap"><?php
screen_icon();
if ( !is_multisite() ) : ?>
<h2 class="nav-tab-wrapper">
<a href="themes.php" class="nav-tab nav-tab-active"><?php echo esc_html( $title ); ?></a>
<?php
if ( current_user_can('install_themes') ) {
$href = is_multisite() ? network_admin_url( 'theme-install.php' ) : admin_url( 'theme-install.php' );
?>
<a href="<?php echo $href; ?>" class="nav-tab"><?php echo esc_html_x('Install Themes', 'theme'); ?></a>
<?php } ?>
<?php if ( current_user_can('install_themes') ) : ?>
<a href="<?php echo admin_url( 'theme-install.php'); ?>" class="nav-tab"><?php echo esc_html_x('Install Themes', 'theme'); ?></a>
<?php endif;
else : ?>
<h2>
<?php esc_html_e( $title ); ?>
<?php endif; ?>
</h2>
<h3><?php _e('Current Theme'); ?></h3>