TiNav 导航主题.png

本地:TiNav分类导航主题.zip v2.0(4.26更新)

本主题涉及到修改Typecho系统文件和数据库,注意备份,建议看完本文再操作,莫着急。

使用方法:

1、下载主题,上传到typecho主题文件夹;

2、在Typecho数据库文章表中添加新字段

①在数据表 typecho_contents 中新建一个 test_url、test_word、test_img 三个字段,类型可为字符串;

1.jpg

②后台模板文件 adminwrite-post.php 表单中(大概在第21行后面)插入:

<p>
跳转链接:<input type="text" name="test_url" value="<?php $post->test_url(); ?>"/>
链接描述:<input type="text" name="test_word" value="<?php $post->test_word(); ?>"/> 
链接LOGO:<input type="text" name="test_img" value="<?php $post->test_img(); ?>"/>
</p>

③在 varWidgetContentsPostEdit.php 里的 writePost 函数里需要接收新字段参数:

 public function writePost()
    {
        $contents = $this->request->from('password', 'allowComment',
            'allowPing', 'allowFeed', 'slug', 'tags', 'text', 'visibility', 'test_url', 'test_word', 'test_img');

④在 varWidgetAbstractContents.php 里的三个函数添加新参数:

在 insert 函数添加新参数:

   /**
     * 插入内容
     *
     * 
    public function insert(array $content)
    {
        /** 构建插入结构 */
        $insertStruct = array(
            'title'         =>  empty($content['title']) ? NULL : htmlspecialchars($content['title']),
            'created'       =>  empty($content['created']) ? $this->options->time : $content['created'],
            'modified'      =>  $this->options->time,
            'text'          =>  empty($content['text']) ? NULL : $content['text'],
            'order'         =>  empty($content['order']) ? 0 : intval($content['order']),
            'authorId'      =>  isset($content['authorId']) ? $content['authorId'] : $this->user->uid,
            'template'      =>  empty($content['template']) ? NULL : $content['template'],
            'type'          =>  empty($content['type']) ? 'post' : $content['type'],
            'status'        =>  empty($content['status']) ? 'publish' : $content['status'],
            'password'      =>  empty($content['password']) ? NULL : $content['password'],
            'commentsNum'   =>  empty($content['commentsNum']) ? 0 : $content['commentsNum'],
            'allowComment'  =>  !empty($content['allowComment']) && 1 == $content['allowComment'] ? 1 : 0,
            'allowPing'     =>  !empty($content['allowPing']) && 1 == $content['allowPing'] ? 1 : 0,
            'allowFeed'     =>  !empty($content['allowFeed']) && 1 == $content['allowFeed'] ? 1 : 0,
            'parent'        =>  empty($content['parent']) ? 0 : intval($content['parent']),
            'test_url'         =>  empty($content['test_url']) ? NULL : $content['test_url'],
            'test_word'         =>  empty($content['test_word']) ? NULL : $content['test_word'],
            'test_img'         =>  empty($content['test_img']) ? NULL : $content['test_img']
        );

在 update 函数里构建更新结构加入新字段:

   public function update(array $content, Typecho_Db_Query $condition)
    {
        /** 首先验证写入权限 */
        if (!$this->isWriteable(clone $condition)) {
            return false;
        }

        /** 构建更新结构 */
        $preUpdateStruct = array(
            'title'         =>  empty($content['title']) ? NULL : htmlspecialchars($content['title']),
            'order'         =>  empty($content['order']) ? 0 : intval($content['order']),
            'text'          =>  empty($content['text']) ? NULL : $content['text'],
            'template'      =>  empty($content['template']) ? NULL : $content['template'],
            'type'          =>  empty($content['type']) ? 'post' : $content['type'],
            'status'        =>  empty($content['status']) ? 'publish' : $content['status'],
            'password'      =>  empty($content['password']) ? NULL : $content['password'],
            'allowComment'  =>  !empty($content['allowComment']) && 1 == $content['allowComment'] ? 1 : 0,
            'allowPing'     =>  !empty($content['allowPing']) && 1 == $content['allowPing'] ? 1 : 0,
            'allowFeed'     =>  !empty($content['allowFeed']) && 1 == $content['allowFeed'] ? 1 : 0,
            'parent'        =>  empty($content['parent']) ? 0 : intval($content['parent']),
            'test_url'      =>  empty($content['test_url']) ? NULL : $content['test_url'],
            'test_word'     =>  empty($content['test_word']) ? NULL : $content['test_word'],
            'test_img'      =>  empty($content['test_img']) ? NULL : $content['test_img']
        );

在 select 函数里添加查询新字段:

/**
 * 获取查询对象
 *
 * 
public function select()
{
    return $this->db->select('table.contents.cid', 'table.contents.title', 'table.contents.slug', 'table.contents.created', 'table.contents.authorId',
    'table.contents.modified', 'table.contents.type', 'table.contents.status', 'table.contents.text', 'table.contents.commentsNum', 'table.contents.order',
    'table.contents.template', 'table.contents.password', 'table.contents.allowComment', 'table.contents.allowPing', 'table.contents.allowFeed',
    'table.contents.parent','table.contents.test_url','table.contents.test_word','table.contents.test_img')->from('table.contents');
}

不爱动手的小伙伴可以下载下面修改好的系统文件,直接覆盖。

本地:主题TiNav修改好的系统文件.zip

上面步骤操作完成后,撰写文章页面如下图

2.jpg

到这里主题安装完毕。

关于导航栏的创建,只要新建分类即可

导航栏标题前面的图标请在分类缩略名中填入,图标样式请参考
http://fontawesome.dashgame.com/

3.jpg

我的疑问:
说实话,这主题安装挺麻烦的,关于自定义字段和数据库修改问题,我也尝试过在functions文件中添加,但是字段在index.php文件中却无法调用,不知有没有小伙伴能解决此问题。

为了不打击本屌的开发积极性,转载请注明出处.

The end.

作者:https://www.seogo.me/theme/TiNav.html