Does anyone know how to sort post categories by ID, rather than name?
Wordpress Question
Collapse
X
-
In "wp-admin/admin-functions.php" at line 590, change:
$categories = $wpdb->get_results("SELECT * FROM $wpdb->categories ORDER BY cat_name");
to
$categories = $wpdb->get_results("SELECT * FROM $wpdb->categories ORDER BY cat_ID");
Save. Voila!264 349 400 -
No such luck, that modification alters sorting in the administration panel, not the website itself.
I'm using Wordpress 2.0.6 by the way.Comment
-
Oh lol... Well that's easy just change it in the sidebar.php or wherever the categories are...
$sort_column = 'ID' instead of $sort_column = 'name'264 349 400Comment
-
Comment

Comment