PluginProbe
Tag, Category, and Taxonomy Manager – Autotagger Automatically Add Terms / 3.50.0
Tag, Category, and Taxonomy Manager – Autotagger Automatically Add Terms v3.50.0
3.54.0 3.53.0 3.52.0 3.51.0 3.50.0 3.45.0 3.38.0 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.40.0 3.40.1 3.41.0 3.42.0 3.43.0 3.44.0 3.5.0 3.5.1 3.5.2 3.5.3 3.6.0 3.6.1 All 178 releases
simple-tags / inc / taxonomies-action.php

taxonomies-action.php in Tag, Category, and Taxonomy Manager – Autotagger Automatically Add Terms 3.50.0, at inc/taxonomies-action.php

15 lines 794 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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