博客簿

Typecho 实现短代码功能。

时间:4年前   阅读:5105

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


上一篇:Typecho 主题模版制作常用调用变量和函数,参数分享

下一篇:Typecho 随机缩略图函数分享

网友评论