Remove favorite_actions() from h2s. Restore Add New buttons. see #17324

git-svn-id: https://develop.svn.wordpress.org/trunk@17849 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren
2011-05-10 19:18:16 +00:00
parent 6cea4ea026
commit 57d714aedc
10 changed files with 42 additions and 53 deletions
+7 -8
View File
@@ -71,16 +71,15 @@ require_once('./admin-header.php');
<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') ) :
?><a href="<?php echo admin_url( 'theme-install.php'); ?>" class="nav-tab"><?php echo esc_html_x('Install Themes', 'theme'); ?></a><?php
endif;
<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') ) : ?>
<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 echo esc_html( $title ); ?>
<h2>
<?php echo esc_html( $title ); ?>
<?php endif; ?>
</h2>