导航菜单
登录 注册

需求

仿WordPress主题的是否发现Typecho的侧边栏评论列表没有这样的功能。只能自己实现了

实现

其实观察comments表就发现该表有cid字段,就是评论所属文章,那侧边栏评论的Widget_Comments_Recent可以直接调用cid

echo $comments->cid; // 文章cid

那就好说了,直接一个SQL语句查询就行了。

以下代码放到functions.php就能用

function getParent($cid)
{
    $select = $this->db->select()->from('table.contents')->where('table.contents.cid = ?', $cid)->limit(1);
    $result = $this->db->fetchAll($select);
    if (isset($result[0])) {
        return Typecho_Config::factory($result[0]);
    }
    return Typecho_Config::factory(array());
}

使用方式很简单

getParent($comments->cid)->title();

后来我发现自带,无需重复查询(兼容 Typecho 1.3

function getParent($comments) {
    return is_object($comments->parentContent) ? $comments->parentContent : Typecho_Config::factory($comments->parentContent);
}

使用方式也很简单

getParent($comments)->title();
Spzac 个人资讯下载类主题(修改版)
上一篇
Typecho 文章内链接在新窗口打开实现方式
下一篇
广告