| Kort |
|
|---|---|
if (!function_exists(get_root_cat))
{
function get_root_cat($code)
{
global $structure;
return mb_substr($structure['page'][$code]['path'], 0, mb_strpos($structure['page'][$code]['path'], '.'));
}
}
if (!function_exists(get_root_title))
{
function get_root_title($code)
{
global $structure;
$cat = mb_substr($structure['page'][$code]['path'], 0, mb_strpos($structure['page'][$code]['path'], '.'));
return $structure['page'][$cat]['title'];
}
}
Разместить можно в themename.php -- функции определяют соответственно код и название первого родителя. SED.by - создание сайтов, разработка плагинов и тем для Котонти
|