Typecho获取文章缩略图
主题functions.php添加以下代码 function img_postthumb($thumbThis) {
$db = Typecho_Db::get();
$rs = $db->fetchRow($db->select('table.contents.text')
->from('table.contents')
->where('table.contents.cid=?', $thumbThis->cid)
->order('table.contents.cid', T...