Taxonomy-Order
folder to the /wp-content/plugins/
directoryYes, this plugin works really fine with WordPress 3.4! It also should with WP 3.0+ - but we only tested extensively with WP 3.4 to 3.6. So you always should run the latest WordPress version for a lot of reasons.
This plugin is 100% secure to install. While activating this plugin new table is created in database but if you no longer need this plugin and want to roolback changes made by this plugin then you can easily deactivate and then uninstall it from your 'plugins' menu in wordpress.
Definitely yes because this plugin is based on OOP Class and if you are running PHP<5.0.0 then this plugin will never be activated.
Yep. To enable ordering terms of a specific taxonomy add t
his code to your theme's function.php file:
if( function_exists('add_interface_taxonomy_order') ){ add_interface_taxonomy_order ("$taxonomy_name"); }
Yep. To remove support for a specific taxonomy add this code to your theme's function.php file:
if( function_exists('remove_interface_taxonomy_order') ){ remove_interface_taxonomy_order ("$taxonomy_name"); }
Yep. To check if terms ordering is enable for a specific taxonomy add this code to your theme's function.php file:
if( function_exists('has_interface_taxonomy_order') ){ $enable = has_interface_taxonomy_order ("$taxonomy_name"); }