Typecho侧边栏最新评论实现显示评论于文章功能
实现
其实观察comments表就发现该表有cid字段,就是评论所属文章,那侧边栏评论的Widget_Comments_Recent可以直接调用cid
echo $comments->cid; // 文章cid
那就好说了,直接一个SQL语句查询就行了。
以下代码放到functions.php
就能用
public 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();
评论 (0)