Make WordPress Core


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/link-import.php

    r6231 r6026  
    4646<?php _e('Category:') ?> <select name="cat_id">
    4747<?php
    48 $categories = get_terms('link_category', 'get=all');
     48$categories = get_categories('hide_empty=0');
    4949foreach ($categories as $category) {
    5050?>
    51 <option value="<?php echo $category->term_id; ?>"><?php echo wp_specialchars(apply_filters('link_category', $category->name)); ?></option>
     51<option value="<?php echo $category->cat_ID; ?>"><?php echo wp_specialchars(apply_filters('link_category', $category->cat_name)); ?></option>
    5252<?php
    5353} // end foreach
Note: See TracChangeset for help on using the changeset viewer.