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

评论列表