王尘宇王尘宇

研究百度干SEO做推广变成一个被互联网搞的人

Typecho 完成短代码功用。

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


相关文章

评论列表

发表评论:
验证码

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。