| 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 |
?> |