解决方案

方法一

粗暴的修改源码,该方法适用Pb任何版本。

步骤:

1、打开 /apps/home/controller/ParserController.php

搜索 parserAfter 这个方法,在 return $content; 上一行插入:

$content = str_replace('{Year}', date('Y'), $content);

代码加完如图:

image.png

方法二

使用PbootCms的扩展,版本号高于 2.0.6,优点事升级无忧。

完整代码我就不贴了,有兴趣的可以参考我的 PbootCms扩展控制器源码分享  一文。

// 扩展单个标签
private function diylabel()
{
    $this->content = str_replace('{Year}', date('Y'), $this->content);
}

使用方法

image.png

任意位置输入{Year},即表示当年的年份。