食用方法

1.添加主题函数

在Typecho当前主题的functions.php文件,添加下面代码!

$notice = new Typecho_Widget_Helper_Form_Element_Textarea('notice', NULL, NULL, _t('公告'), _t('公告栏,可用一部分html标签'));
      $form->addInput($notice);

如果主题 没有functions.php 文件,就在主题目录新建一个添加下面代码和上面差点,多加了一个主体函数:

function themeConfig($form)
   {
      $notice = new Typecho_Widget_Helper_Form_Element_Textarea('notice', NULL, NULL, _t('公告'), _t('侧边栏公告'));
      $form->addInput($notice);
   }
2.合适位置引用公告

然后在 sidebar.php或者header.pnp 中适当位置加入引用以下代码:

<marquee scrollamount=7 onmouseover=this.stop() onmouseout=this.start() bgcolor="#fffef9">告示: <span style="color:#007947;">萌新网站,不足之处,望得到各位大佬的指指点点!</span></marquee>

效果如下:
<marquee scrollamount=7 onmouseover=this.stop() onmouseout=this.start() bgcolor="#fffef9">告示: <span style="color:#007947;">萌新网站,不足之处,望得到各位大佬的指指点点!</span></marquee>