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

29 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/functions.deprecated.php'; // Deprecated functions
11 require STAGS_DIR . '/inc/functions.tpl.php'; // Templates functions
12
13 require STAGS_DIR . '/inc/class.plugin.php';
14 require STAGS_DIR . '/inc/class.client.php';
15 require STAGS_DIR . '/inc/class.client.tagcloud.php';
16 require STAGS_DIR . '/inc/class.widgets.php';
17 require STAGS_DIR . '/inc/class.shortcode_widgets.php';
18 require STAGS_DIR . '/inc/posts-tags-widget.php';
19 require STAGS_DIR . '/inc/related-posts-widget.php';
20
21 //include blocks
22 require STAGS_DIR . '/blocks/related-posts.php';
23
24 //include ajax
25 require STAGS_DIR . '/inc/ajax-request.php';
26
27 //review request
28 require STAGS_DIR . '/review-request/review.php';
29 ?>