在api/extend.func.php 中加入以下函数
- //收藏
function favorite($title){
global $db;
$r = $db->get("selec count(itemid) as num from {$db->pre}favorite wher title='$title'");
return $r['num'];
}
列表调用标签 {favorite($t[title])}
内容页调用标签 {favorite($title)}
该方法有缺陷,信息标题修改后就调用不到了,但是这样统计不需要改收藏功能,比较方便。