侧边栏壁纸
  • 累计撰写 18 篇文章
  • 累计收到 3 条评论

代码库

wangy
2021-03-20 / 0 评论 / 12 阅读 / 正在检测是否收录...

Typecho_Plugin::factory('admin/write-post.php')->bottom = array('Editor', 'edit');
Typecho_Plugin::factory('admin/write-page.php')->bottom = array('Editor', 'edit');

class Editor
{

public static function edit()
{
    echo "<script src='" . Helper::options()->themeUrl . '/typecho/editor/joe.extend.js' . "'></script>";
    echo "<script src='" . Helper::options()->themeUrl . '/typecho/editor/joe.editor.js' . "'></script>";
}

}

0