Changeset 13450
- Timestamp:
- 02/27/2010 04:04:36 AM (15 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-tags.php
r13268 r13450 309 309 <p><?php printf(__('Categories can be selectively converted to tags using the <a href="%s">category to tag converter</a>.'), 'admin.php?import=wp-cat2tag') ?></p> 310 310 </div> 311 <?php endif; ?> 312 311 <?php elseif ( 'post_tag' == $taxonomy ) : ?> 312 <div class="form-wrap"> 313 <p><?php printf(__('Tags can be selectively converted to categories using the <a href="%s">tag to category converter</a>'), 'admin.php?import=wp-cat2tag&step=3') ;?>.</p> 314 </div> 315 <?php endif; 316 do_action('after-' . $taxonomy . '-table', $taxonomy); 317 ?> 313 318 314 319 </div> -
trunk/wp-admin/tools.php
r11940 r13450 90 90 endif; 91 91 92 $cats = get_taxonomy('category'); 93 $tags = get_taxonomy('post_tag'); 94 95 if ( current_user_can($cats->manage_cap) || current_user_can($tags->manage_cap) ) : ?> 96 <div class="tool-box"> 97 <h3 class="title"><?php _e('Category/Tag Conversion') ?></h3> 98 <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&step=3'); ?></p> 99 </div> 100 <?php 101 endif; 102 92 103 do_action( 'tool_box' ); 93 104 ?>
Note: See TracChangeset
for help on using the changeset viewer.