首页 > SEO优化 > Typecho 实现短代码功能。

Typecho 实现短代码功能。

时间:2023年10月17日 分类:SEO优化 浏览量:81

Typecho 实现短代码功能。

Typecho在functions.php 中实现类似wordpress短代码功能
typecho 实现短代码功能,同样是在 functions.php 中,但不是随意写。这里定义一个名为themeInit 模版初始方法,我们要实现什么样的功能,只需要在这里操作即可。例:

function themeInit($archive) {
    // $archive 在这里相当于我们模版中的 $this,具体可以打印看看
}

例如我在文章最后加入一句话,可以做如下操作:

function themeInit($archive) {
    $archive->content = addIntro($archive->content);
}

function addIntro($content) {
    $intro = '<p>我在这里</p>';
    return $content . $intro;
}

此文章转载自:https://github.com/shingchi/shingchi.github.com/issues/26

觉得文章有用就打赏一下文章作者

微信扫一扫打赏

标签: