Don't show search box if there are no themes available. See #15353
git-svn-id: http://svn.automattic.com/wordpress/trunk@16861 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c6c9ce82b3
commit
052500b76f
|
@ -143,9 +143,13 @@ if ( ! current_user_can( 'switch_themes' ) ) {
|
|||
exit;
|
||||
}
|
||||
?>
|
||||
|
||||
<h3><?php _e('Available Themes'); ?></h3>
|
||||
|
||||
<?php if ( $wp_list_table->has_items() ) : ?>
|
||||
|
||||
<form class="search-form filter-form" action="" method="get">
|
||||
|
||||
<p class="search-box">
|
||||
<label class="screen-reader-text" for="theme-search-input"><?php _e('Search Themes'); ?>:</label>
|
||||
<input type="text" id="theme-search-input" name="s" value="<?php _admin_search_query(); ?>" />
|
||||
|
@ -194,6 +198,8 @@ if ( ! current_user_can( 'switch_themes' ) ) {
|
|||
</form>
|
||||
<br class="clear" />
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
<?php $wp_list_table->display(); ?>
|
||||
|
||||
<br class="clear" />
|
||||
|
|
Loading…
Reference in New Issue