Fix default cat options. see #4189
git-svn-id: http://svn.automattic.com/wordpress/trunk@5562 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
333d77ea9c
commit
2857b43d78
|
@ -31,11 +31,11 @@ include('admin-header.php');
|
|||
<th scope="row"><?php _e('Default post category:') ?></th>
|
||||
<td><select name="default_category" id="default_category">
|
||||
<?php
|
||||
$categories = $wpdb->get_results("SELECT * FROM $wpdb->categories ORDER BY cat_name");
|
||||
$categories = get_categories('get=all');
|
||||
foreach ($categories as $category) :
|
||||
if ($category->cat_ID == get_option('default_category')) $selected = " selected='selected'";
|
||||
if ($category->term_id == get_option('default_category')) $selected = " selected='selected'";
|
||||
else $selected = '';
|
||||
echo "\n\t<option value='$category->cat_ID' $selected>$category->cat_name</option>";
|
||||
echo "\n\t<option value='$category->term_id' $selected>$category->name</option>";
|
||||
endforeach;
|
||||
?>
|
||||
</select></td>
|
||||
|
@ -44,10 +44,11 @@ endforeach;
|
|||
<th scope="row"><?php _e('Default link category:') ?></th>
|
||||
<td><select name="default_link_category" id="default_link_category">
|
||||
<?php
|
||||
$categories = get_terms('link_category', 'get=all');
|
||||
foreach ($categories as $category) :
|
||||
if ($category->cat_ID == get_option('default_link_category')) $selected = " selected='selected'";
|
||||
if ($category->term_id == get_option('default_link_category')) $selected = " selected='selected'";
|
||||
else $selected = '';
|
||||
echo "\n\t<option value='$category->cat_ID' $selected>$category->cat_name</option>";
|
||||
echo "\n\t<option value='$category->term_id' $selected>$category->name</option>";
|
||||
endforeach;
|
||||
?>
|
||||
</select></td>
|
||||
|
|
Loading…
Reference in New Issue