我有以下功能,我需要从中排除类别,因为它在多个不同的地方跨站点工作。我该怎么做?
// allCategories(): return an array of categories to browse in heirarchy
public function allCategories() {
$return = array();
if ($this->category) {
$return = $this->catList($this->section->term_id);
}
return $return;
}
}
提前谢谢你。