PluginProbe
Tag, Category, and Taxonomy Manager – Autotagger Automatically Add Terms / 3.6.1
Tag, Category, and Taxonomy Manager – Autotagger Automatically Add Terms v3.6.1
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.6.1, at inc/loads.php

30 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 require STAGS_DIR . '/inc/functions.inc.php'; // Internal functions
3 require STAGS_DIR . '/inc/taxonomies-functions.php'; // Taxonomy functions
4 require STAGS_DIR . '/inc/tag-clouds-functions.php'; // Tag cloud functions
5 require STAGS_DIR . '/inc/post-tags-functions.php'; // Post tags functions
6 require STAGS_DIR . '/inc/related-posts-functions.php'; // Related posts functions
7 require STAGS_DIR . '/inc/autolinks-functions.php'; // Auto links functions
8 require STAGS_DIR . '/inc/autoterms-functions.php'; // Auto terms functions
9 require STAGS_DIR . '/inc/suggestterms-functions.php'; // Suggest terms functions
10 require STAGS_DIR . '/inc/terms-functions.php'; // terms functions
11 require STAGS_DIR . '/inc/functions.deprecated.php'; // Deprecated functions
12 require STAGS_DIR . '/inc/functions.tpl.php'; // Templates functions
13
14 require STAGS_DIR . '/inc/class.plugin.php';
15 require STAGS_DIR . '/inc/class.client.php';
16 require STAGS_DIR . '/inc/class.client.tagcloud.php';
17 require STAGS_DIR . '/inc/class.widgets.php';
18 require STAGS_DIR . '/inc/class.shortcode_widgets.php';
19 require STAGS_DIR . '/inc/posts-tags-widget.php';
20 require STAGS_DIR . '/inc/related-posts-widget.php';
21
22 //include blocks
23 require STAGS_DIR . '/blocks/related-posts.php';
24
25 //include ajax
26 require STAGS_DIR . '/inc/ajax-request.php';
27
28 //review request
29 require STAGS_DIR . '/review-request/review.php';
30 ?>