Files
thinksaas_lmve/plugins/home/topic/topic.php
T
2023-06-22 13:33:25 +08:00

13 lines
261 B
PHP

<?php
defined('IN_TS') or die('Access Denied.');
function topic(){
$arrTopic = aac('home')->findAll('topic',array(
'isaudit'=>0,
),'addtime desc','topicid,title',10);
include template('topic','topic');
}
addAction('home_index_right','topic');