AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
# 热门文章组件制作 热门文章 ```php <!--获取最热的5条文章--> <php>$hot_articles=sp_sql_posts("cid:$portal_index_lastnews;field:post_title,post_excerpt,object_id,term_id,smeta;order:post_hits desc;limit:5;"); </php> <ul class="unstyled"> <foreach name="hot_articles" item="vo"> <php>$top=$key<3?"top3":"";</php> <li class="{$top}"> <i>{$key+1}</i> <a title="{$vo.post_title}" href="{:leuu('article/index',array('id'=>$vo['object_id'],'cid'=>$vo['term_id']))}">{$vo.post_title}</a></li> </foreach> </ul> ```