• Resolved davecarpenter

    (@davecarpenter)


    Hi, after the latest WordPress core update, I noticed that my taxonomy terms weren’t appearing in the backend. After deactivating and reactivating this plugin, the issue was fixed.

    I believe the cause of this is the term_order column that your plugin adds to the wp_terms table. After a WordPress database update, it seems that this column is removed from the database and because your plugin only adds this column on plugin activation, a condition arises in which taxonomy terms in the backend are being sorted by a column that doesn’t exist.

    For reference: line 19 in taxonomy-terms-order.php registers the activation hook TO_activated() where tto_activate() is called, which creates the term_order column in wp_terms.

    Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘WordPress Core Database Update Breaks Plugin’ is closed to new replies.