Category Order WP 2.0.x Compatibility

Let me know if you’re using WordPress 2.0.x and are having trouble with my Category Order plugin. One thing to try is to change this:

function get_category_by_slug($slug) {
$categories = get_categories();

in category_order.php to this:

function get_category_by_slug($slug) {
$categories =
$wpdb->get_results("SELECT * FROM $wpdb->categories ORDER BY cat_name");

Leave a Reply

You must be logged in to post a comment.