寻找这个插件,有的回复一下我。
$newUser = db_find( 'user', array( 'uid' => array( '>' => 0 ) ), array( 'create_date' => -1 ), '1', '1', '', array( 'uid', 'username' ) ); var_dump( $neweUser );
hechaocheng $newUser = db_find( 'user', array( 'uid' => array( '>' =&am ...
lin2053 这个放在哪里?
lisilu531 这个是编辑的哪个文件,主题的首页文件吗
放在你需要的调用的地方。
插件的方案,在/plugin/user-lists/hook/目录下新建index_site_brief_after.htm
<div class="card searchBox"> <div class="card-header text-grey">最新加入</div> <div class="card-body text-grey"> <style type="text/css"> div.newUser{box-sizing:border-box;position:relative;float:left;margin:1%;width:23%;text-align:center} div.newUser:hover{filter:drop-shadow(0px 0px 2px #808080)} div.newUser a:link{text-decoration:none;color:#868e96} div.newUser a div{overflow:hidden;white-space:nowrap;/*text-overflow:ellipsis*/} div.newUser a img{border-radius:4px;width:67px;} </style> <?php /** * copyright: www.xiunobbs.net * plugin: xn_user-lists * email: hi[at]hechaocheng[dot]com * file: /plugin/user-lists/hook/index_site_brief_after.htm */ $newUser = db_find( 'user', // 表名 array( // 条件 'uid' => array( '>' => 0 ) ), array( 'create_date' => -1 // 倒序 ), '1', // 页数 '9', // 记录数 '', array( 'uid', 'username' ) ); foreach($newUser as $v){ $userAvatar = file_exists('upload/avatar/000/'. $v['uid'] .'.png') ? 'upload/avatar/000/'. $v['uid'] .'.png' : 'view/img/avatar.png'; echo '<div class="newUser">'; echo '<a href="?user-'. $v['uid'] .'.htm">'; echo '<img referrerpolicy="no-referrer" src="https://cache.mipcdn.com/c/s/bbs.tmd.gs/'. $userAvatar .'?t='. time() .'" alt="'. $v['username'] .'" /><div>'. $v['username'] .'</div></a>'; echo '</div>'; } ?> <div style="width:0;height:0;clear:both"></div> </div> </div>
插件版。