// 专题内容 后台代码。
$where = array('sid' => $sid);
$special_content = D('special_content');
$special_content = $special_content->where($where)->order('id DESC')->limit('0,10')->select();
//前台调用。
{loop $special_content $val}
{php $tablename = get_model($val['modelid']);}
{php $db = D($tablename);}
{php $res = $db->where(array('id'=>$val['aid']))->find();}
<div class="special_list">
<a href="{$res[url]}">
<p class="title">{$res[title]}</p>
</a>
</div>
{/loop}
//special_content表没有 点击字段。按文章表click排序。