由 zencarter » 2011-11-13 13:50
首先你应该调用的是这个文件:include(DIR_WS_MODULES . 'sideboxes/categories.php');
然后将categories.php文件改为下面的内容试下,没有调试过,看下能否显示
<?php
$main_category_tree = new category_tree;
$row = 0;
$box_categories_array = array();
// don't build a tree when no categories
$check_categories = $db->Execute("select categories_id from " . TABLE_CATEGORIES . " where categories_status=1 limit 1");
if ($check_categories->RecordCount() > 0) {
$box_categories_array = $main_category_tree->zen_category_tree();
}
require($template->get_template_dir('tpl_categories.php',DIR_WS_TEMPLATE, $current_page_base,'sideboxes'). '/tpl_categories.php');
?>
<div class="BoxContainer" style="width:200px;">
<?php echo $content; ?>
</div>