⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 block.mttoplevelparent.php

📁 1. 记录每个帖子的访问人情况
💻 PHP
字号:
<?phpfunction smarty_block_MTTopLevelParent($args, $content, &$ctx, &$repeat) {    if (!isset($content)) {        $ctx->localize(array('category','conditional','else_content'));        require_once("MTUtil.php");        $cat = get_category_context($ctx);        require_once("block.MTParentCategories.php");        $list = array();        get_parent_categories($cat, $ctx, $list);        $ctx->stash('else_content', null);        if (count($list) > 0) {            $cat = array_pop($list);            $ctx->stash('category', $cat);        } else {            $cat = null;        }        $ctx->stash('conditional', $cat ? 1 : 0);    } else {        if (!$ctx->stash('conditional')) {            $content = $ctx->stash('else_content');        }        $ctx->restore(array('category','conditional','else_content'));    }    return $content;}?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -