PluginProbe
Tag, Category, and Taxonomy Manager – Autotagger Automatically Add Terms / 3.44.0
Tag, Category, and Taxonomy Manager – Autotagger Automatically Add Terms v3.44.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 3.6.2 All 177 releases
simple-tags / inc / loads.php

loads.php in Tag, Category, and Taxonomy Manager – Autotagger Automatically Add Terms 3.44.0, at inc/loads.php

40 lines 1.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 // TaxoPress AI Module
3 require_once STAGS_DIR . '/modules/taxopress-ai/taxopress-ai.php';
4
5 require STAGS_DIR . '/inc/hidden-terms.php';
6
7 require STAGS_DIR . '/inc/utilities.php'; // Internal functions
8 require STAGS_DIR . '/inc/functions.inc.php'; // Internal functions
9 require STAGS_DIR . '/inc/taxonomies-functions.php'; // Taxonomy functions
10 require STAGS_DIR . '/inc/tag-clouds-functions.php'; // Tag cloud functions
11 require STAGS_DIR . '/inc/post-tags-functions.php'; // Post tags functions
12 require STAGS_DIR . '/inc/related-posts-functions.php'; // Related posts functions
13 require STAGS_DIR . '/inc/autolinks-functions.php'; // Auto links functions
14 require STAGS_DIR . '/inc/autoterms-functions.php'; // Auto terms functions
15 require STAGS_DIR . '/inc/terms-functions.php'; // terms functions
16 require STAGS_DIR . '/inc/functions.deprecated.php'; // Deprecated functions
17 require STAGS_DIR . '/inc/functions.tpl.php'; // Templates functions
18
19 require STAGS_DIR . '/inc/class.plugin.php';
20 require STAGS_DIR . '/inc/class.client.php';
21 require STAGS_DIR . '/inc/class.client.tagcloud.php';
22 require STAGS_DIR . '/inc/class.client.schedule.php';
23 require STAGS_DIR . '/inc/class.widgets.php';
24 require STAGS_DIR . '/inc/class.shortcode_widgets.php';
25 require STAGS_DIR . '/inc/posts-tags-widget.php';
26 require STAGS_DIR . '/inc/related-posts-widget.php';
27
28 require STAGS_DIR . '/inc/schedule.php';
29
30 //include blocks
31 require STAGS_DIR . '/blocks/related-posts.php';
32 require STAGS_DIR . '/blocks/post-tags.php';
33 require STAGS_DIR . '/blocks/tag-clouds.php';
34
35 //include ajax
36 require STAGS_DIR . '/inc/ajax-request.php';
37
38 //review request
39 require STAGS_DIR . '/review-request/review.php';
40