Custom Taxonomy Order NE

Wordpress Plugin
Download latest - 3.4.4

Developers

mpol

Download Stats

Today 62
Yesterday 97
Last Week 611
All Time 140,445
Banner 772x250

Custom Taxonomy Order is a plugin for WordPress which allows for the ordering of taxonomy terms.

It supports the following features:

  • Order (custom) terms through a simple drag-and-drop interface.
  • No custom coding needed. It uses standard WordPress filters.
  • It uses the available WordPress scripts and styles.
  • The plugin is lightweight, without any unnecessary scripts to load into the admin.
  • It falls in line gracefully with the look and feel of the WordPress interface.
  • It uses it's own menu in the backend.
  • Translated or translatable.
  • Custom functions to order the taxonomies themselves.
  • There is no Pro version, everything works in the Free version.

Compatibility

This plugin is compatible with ClassicPress.

Contributions

This plugin is also available in Codeberg.


Releases (26 )

Version Release Date Change Log
3.4.4 2022-10-28
  • 2022-07-27
  • Use correct value for updating term_relationships table. this should fix some reported issues where the problem was unclear.
  • On updating order, list the number of terms that were updated.
3.4.3 2022-04-30
  • 2022-04-30
  • Ouch, don't do those calculations on frontend either when there are too many terms, it is too expensive.
3.4.2 2022-04-27
  • 2022-04-27
  • Do not use the previous change on admin dashboard, some WooCommerce pages are way too heavy with terms.
3.4.1 2022-04-27
  • 2022-04-27
  • Improve ordering nested sub-terms.
3.4.0 2022-03-14
  • 2022-03-14
  • Support order by post count.
  • Add filter 'customtaxorder_get_taxonomies'.
3.3.3 2022-01-24
  • 2022-01-24
  • Traverse all parents for sorting child terms, not just the toplevel ancestor.
  • Some fixes on admin page for sorting subterms.
  • Add filter 'customtaxorder_settings'.
3.3.2 2022-01-23
  • 2021-12-24
  • Add function 'customtaxorder_is_get_orderby_set'.
  • Add filter 'customtaxorder_is_get_orderby_set' to optionally change the output of that function.
  • Fix warning on PHP 8.1.
  • Show taxonomy name as label on dashboard, if label is not set.
  • Remove old translation files from plugin, GlotPress should be used.
  • Do not show all submenu items on dashboard if they are over 100 (fix for Woo attributes).
3.3.1 2021-11-26
  • 2021-11-26
  • Bring back removed code for orderby clause in 'get_terms_orderby' filter.
  • No need to check if function 'current_user_can' and 'is_multisite' exist.
  • Use functions like 'esc_attr', 'esc_html' and 'esc_url' when appropriate.
3.3.0 2021-02-23
  • 2021-02-23
  • Save settings per taxonomy with capability 'manage_categories', not 'manage_options'.
  • Rewrite some code for settings pages.
  • Fix deprecated jQuery calls with WP 5.6 and jQuery 3.5.
  • Rename script.js to customtaxorder.js.
3.2.2 2020-12-04
  • 2020-12-04
  • Fix category/tag edit screen, extra field.
  • Change 'strval()' to '(string)'.
  • Change 'floatval()' to '(float)'.
3.2.1 2020-08-04
  • 2020-07-07
  • More compatibility with WPML plugin.
  • Remove code to set taxonomy 'link_category' to public.
3.2.0 2020-07-06
  • 2020-07-06
  • Improve compatibility with WPML plugin.
  • Add function 'customtaxorder_get_taxonomies()' to remove duplicate code.
  • Be able to sort all taxonomies, public and non-public.
  • Use more esc_html functions.
  • Update About page.
  • Only load translations at the dashboard.
3.1.0 2020-03-23
  • 2020-03-23
  • Add term_order field to edit screen of terms (thanks @li-an).
  • Add order button for slug (thanks @eric3d).
  • Only load admin functions at dashboard.
  • Remove included es_ES po file, it is maintained in GlotPress.
3.0.1 2020-03-08
  • 2020-01-07
  • Add taxonomy parameter to get_term call for compatibility with WP 4.3.
3.0.0 2019-12-24
  • 2019-12-21
  • Always overwrite orderby according to our settings.
  • Add option to sort by slug.
  • Support new wp_initialize_site action for multisite.
  • Simplify checking for Link Manager plugin.
  • Small fixes found by the phan tool.
2.10.0 2018-10-17
  • 2018-10-17
  • Sort attributes for WooCommerce automatically.
  • Show name and label of taxonomy in the lists.
2.9.5 2018-09-07
  • 2018-09-07
  • Add support for Dark Mode beta plugin.
2.9.4 2018-07-02
  • 2018-07-02
  • Add action 'customtaxorder_terms_ordered'.
2.9.3 2018-02-16
  • 2018-02-16
  • Sort terms with numeric values correctly (thanks empiresafe).
2.9.2 2017-11-30
  • 2017-11-30
  • Add action 'custom_taxonomy_order_ne_settings_buttons' to settings page.
2.9.1 2017-11-10
  • 2017-08-04
  • Set Woo attribute terms to public.
2.9.0 2017-07-10
  • 2017-07-10
  • Drop support for attributes in WooCommerce (deprecated).
  • Use the correct number of parameters with add_filter calls.
  • Set default order in WP_Term_Query->get_terms() according to our settings (probably WP 4.9).
2.8.3 2017-06-11
  • 2017-03-29
  • Add Nonce check to admin pages.
  • Register setting for taxonomies too, with callback function.
  • Run sanitize_text_field on the keyname in the option for customtaxorder_settings.
2.8.2 2016-11-23
  • 2016-10-19
  • Only skip one sort for tags on frontend, not admin.
2.8.1 2016-10-06
  • 2016-10-06
  • Sort children with a float as ancestor.child when set to term_order.
2.8.0 2016-10-04
  • 2016-10-04
  • Remove global var, add function customtaxorder_get_settings().
  • Fix PHP notices in customtaxorder_apply_order_filter.