PHP建站技术分享-从入门到精通PHP建站技术分享-从入门到精通PHP建站技术分享-从入门到精通

QQ:420220301 微信/手机:150-3210-7690
当前位置:首页 > CMS教程 > WellCMS

Wellcms,首页随机调用文章

管理员 2024-12-15
WellCMS
110

首页随机主题代码,样式自行修改。

<?php $arrlist = thread_tid_find(1, 5000);
if ($arrlist) {
    $threads = count($arrlist);
    $total = $threads > 20 ? 20 : $threads;
    $tidarr = $threads > 20 ? array_rand($arrlist, $total) : array_keys($arrlist);
    $arrlist = well_thread_find_asc($tidarr, $total);
}
?><?php if($arrlist){ ?><div class="shadow mt-3">    <div class="card-header bg-light">        <h3 class="h6 font-weight-bold my-0">
            随机推荐        </h3>    </div>    <ul class="list-group list-group-flush">        <!-- 循环输出主题 开始 -->        <?php foreach($arrlist as $_thread) { ?>        <li class="list-group-item bg-white">            <h4 class="h6 my-0">                <!-- 主题链接 -->
                <a href="<?php echo $_thread['url'];?>" class="d-block text-truncate" <?php echo (10==$_thread['type']?'rel="nofollow" target="_blank"':''); ?> title='<?php echo $_thread['subject'];?>' aria-label='<?php echo $_thread['subject'];?>'>                    <!-- 主题 -->                    <?php echo $_thread['subject'];?>                </a>            </h4>        </li>        <?php } ?>        <!-- 循环输出主题 结束 -->    </ul></div><?php } ?>

希望以上内容对你有所帮助!如果还有其他问题,请随时提问。 各类知识收集 拥有多年CMS企业建站经验,对 iCMS, Fastadmin, ClassCMS, LeCMS, PbootCMS, PHPCMS, 易优CMS, YzmCMS, 讯睿CMS, 极致CMS, Wordpress, HkCMS, YznCMS, WellCMS, ThinkCMF, 等各类cms的相互转化,程序开发,网站制作,bug修复,程序杀毒,插件定制都可以提供最佳解决方案。

相关推荐

扫码关注

qrcode

QQ交谈

回顶部