| 1 |
<?php |
| 2 |
|
| 3 |
add_action('admin_init', 'taxopress_flush_rewrite_rules'); |
| 4 |
add_action('admin_init', 'taxopress_process_taxonomy', 8); |
| 5 |
add_action('init', 'taxopress_do_convert_taxonomy_terms'); |
| 6 |
add_action('init', 'taxopress_create_custom_taxonomies', 9); // Leave on standard init for legacy purposes. |
| 7 |
add_action('init', 'unregister_tags', 999); |
| 8 |
add_action('init', 'taxopress_recreate_custom_taxonomies', 999); |
| 9 |
add_action('save_post', 'taxopress_set_default_taxonomy_terms', 100, 2); |
| 10 |
add_action('restrict_manage_posts', 'taxopress_get_dropdown'); |
| 11 |
add_filter('wp_dropdown_cats', 'taxopress_filter_dropdown_cats'); |
| 12 |
add_filter('get_terms_args', 'taxopress_get_terms_args', 5, 2); |
| 13 |
add_filter('get_terms', 'taxopress_filter_terms', 5, 4); |
| 14 |
add_filter('get_the_terms', 'taxopress_terms_order_frontend', 5, 3); |
| 15 |
|