block.mttoplevelcategories.php

来自「1. 记录每个帖子的访问人情况」· PHP 代码 · 共 16 行

PHP
16
字号
<?phpfunction smarty_block_MTTopLevelCategories($args, $content, &$ctx, &$repeat) {    if (!isset($content)) {        $ctx->localize(array('category', 'archive_category'));        $ctx->stash('category', null);        $ctx->stash('archive_category', null);        require_once("block.MTSubCategories.php");    }    $result = smarty_block_MTSubCategories($args, $content, $ctx, $repeat);    if (!$repeat) {        $ctx->restore(array('category', 'archive_category'));    }    return $result;}?>

⌨️ 快捷键说明

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