Remove cat/tag importer from list of tools. see #13465

git-svn-id: https://develop.svn.wordpress.org/trunk@14778 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2010-05-21 14:17:41 +00:00
parent 6f7e81416b
commit 3bb7cdf6c3
1 changed files with 0 additions and 11 deletions

View File

@ -30,17 +30,6 @@ require_once('./admin-header.php');
<?php
endif;
$cats = get_taxonomy('category');
$tags = get_taxonomy('post_tag');
if ( current_user_can($cats->cap->manage_terms) || current_user_can($tags->cap->manage_terms) ) : ?>
<div class="tool-box">
<h3 class="title"><?php _e('Category&#47;Tag Conversion') ?></h3>
<p><?php printf(__('Use this to convert <a href="%s">categories to tags</a>, or <a href="%s">tags to categories</a>.'), 'admin.php?import=wp-cat2tag', 'admin.php?import=wp-cat2tag&amp;step=3'); ?></p>
</div>
<?php
endif;
do_action( 'tool_box' );
?>
</div>