Wordpress Question

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Cyrano
    Confirmed User
    • Apr 2006
    • 920

    #1

    Wordpress Question

    Does anyone know how to sort post categories by ID, rather than name?
  • the alchemist
    Confirmed User
    • Dec 2004
    • 3271

    #2
    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

    Comment

    • Cyrano
      Confirmed User
      • Apr 2006
      • 920

      #3
      Originally posted by the alchemist
      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!
      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

      • Cyrano
        Confirmed User
        • Apr 2006
        • 920

        #4
        bump for answers

        Comment

        • the alchemist
          Confirmed User
          • Dec 2004
          • 3271

          #5
          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 400

          Comment

          • Cyrano
            Confirmed User
            • Apr 2006
            • 920

            #6
            Originally posted by the alchemist
            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'
            lol... That was rather simple, thanks for the help.

            Comment

            • the alchemist
              Confirmed User
              • Dec 2004
              • 3271

              #7
              Originally posted by Cyrano
              lol... That was rather simple, thanks for the help.
              You're welcome
              264 349 400

              Comment

              Working...