block.mtblogifcclicense.php

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

PHP
13
字号
<?phpfunction smarty_block_MTBlogIfCCLicense($args, $content, &$ctx, &$repeat) {    // status: complete    // parameters: none    if (!isset($content)) {        $blog = $ctx->stash('blog');        return $ctx->_hdlr_if($args, $content, $ctx, $repeat, !empty($blog['blog_cc_license']));    } else {        return $ctx->_hdlr_if($args, $content, $ctx, $repeat);    }}?>

⌨️ 快捷键说明

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