<div class="content_topp"> 在任何页面调用最新文章或者随机文章
第一步:
一、让最新文章变成随机文章
打开根目录下 index.php 文件
查找:
' ORDER BY a.article_type DESC, a.add_time DESC LIMIT ' . $GLOBALS['_CFG']['article_number'];
修改为:
' ORDER BY RAND() LIMIT ‘ . $GLOBALS['_CFG']['article_number'];
第二步:
将以下代码保存为 new_articles_ec.lbi 文件
<div class="line number1 index0 alt2" style="font-family: Monaco, Menlo, Consolas, 'Courier New', monospace; background-color: rgb(245, 245, 245); line-height: 14.296875px; font-size: 13px; white-space: normal; border-top-left-radius: 0px !important; border-top-right-radius: 0px !important; border-bottom-right-radius: 0px !important; border-bottom-left-radius: 0px !important; background-image: none !important; border: 0px !important; bottom: auto !important; float: none !important; left: auto !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px 1em !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; min-height: inherit !important;"> |
|