菜鸟站长
个人博客主题模板、应用插件、功能开发技术资源聚合分享网站

typecho后台设置页番外篇—设置页的美化

发布者:菜鸟站长  发布日期:2025-05-22  更新日期:2025-05-22  人气指数:7

博主用过的 typecho主题 不多,见识也有限,在个人用过的主题里功能最全的那必须是joe主题。joe主题不光是有一个很漂亮的前台展现,对主题的后台也进行了美化,以下代码摘录自joe主题的functions.php文件。

function themeConfig($form)
{
  $_db = Typecho_Db::get();
  $_prefix = $_db->getPrefix();
  try {
    if (!array_key_exists('views', $_db->fetchRow($_db->select()->from('table.contents')->page(1, 1)))) {
      $_db->query('ALTER TABLE `' . $_prefix . 'contents` ADD `views` INT DEFAULT 0;');
    }
    if (!array_key_exists('agree', $_db->fetchRow($_db->select()->from('table.contents')->page(1, 1)))) {
      $_db->query('ALTER TABLE `' . $_prefix . 'contents` ADD `agree` INT DEFAULT 0;');
    }
  } catch (Exception $e) {
  }
?>
  <link rel="stylesheet" href="<?php _getAssets('assets/typecho/config/css/joe.config.min.css') ?>">
  <script src="<?php _getAssets('assets/typecho/config/js/joe.config.min.js') ?>"></script>
  <div class="joe_config">
    <div>
      <div class="joe_config__aside">
        <div class="logo">Joe <?php echo _getVersion() ?></div>
        <ul class="tabs">
          <li class="item" data-current="joe_notice">最新公告</li>
          <li class="item" data-current="joe_global">全局设置</li>
          <li class="item" data-current="joe_image">图片设置</li>
          <li class="item" data-current="joe_post">文章设置</li>
          <li class="item" data-current="joe_aside">侧栏设置</li>
          <li class="item" data-current="joe_index">首页设置</li>
          <li class="item" data-current="joe_other">其他设置</li>
        </ul>
        <?php require_once('core/backup.php'); ?>
      </div>
    </div>
    <div class="joe_config__notice">请求数据中...</div>
  <?php
...

可以看到,在?>...<?php之间,插入了css文件,js文件,以及一个 自定义 的列表。如果需要对我们自己的后台进行美化,也可以模仿joe主题的这种方式。typecho的很多主题都开放了 源码 ,比如joe主题就可以直接在github上下载到,类似的还有lpisme主题,Facile主题等等。

本文检索关键词:typecho教程 , 主题开发

菜鸟站长推荐教程



添加新评论 »

icon_mrgreen.pngicon_neutral.pngicon_twisted.pngicon_arrow.pngicon_eek.pngicon_smile.pngicon_confused.pngicon_cool.pngicon_evil.pngicon_biggrin.pngicon_idea.pngicon_redface.pngicon_razz.pngicon_rolleyes.pngicon_wink.pngicon_cry.pngicon_surprised.pngicon_lol.pngicon_mad.pngicon_sad.pngicon_exclaim.pngicon_question.png