指点云用户90 发表于 2022-7-23 22:20:21

Typecho 添加统计代码功能

主题的functions.php中间添加:

function themeConfig($form) {
$tongji = new Typecho_Widget_Helper_Form_Element_Textarea('tongji', NULL, NULL, _t('统计代码'), _t(''));
$form->addInput($tongji);
}前台Footer文件调用:<?php $this->options->tongji(); ?>

页: [1]
查看完整版本: Typecho 添加统计代码功能