管理员

‌1、依次打开 后台左侧菜单  模板插件 > 插件管理 > 电子地图

2、点击 电子地图 右侧的 管理 ,在打开窗口中,修改对应的信息

3、先点击  窗口底部的  保存,保存成功后,再次点击 获取调用代码,在弹出的对话框中,点击 复制代码

4、依次点击 后台左侧菜单 内容管理 > 内容管理 > 联系我们 点击编辑器右侧的 html代码 按钮, 删除以前的地图代码, 把刚才复制的地图代码 粘贴到这里 即可,最后不要忘记 保存。 如下图所示:

图1.png图2.png

2024-09-04
管理员

打开站点根目录下 data / config / plug.php 文件

找到 'plug_spider' => 'spider',

删除这一行代码后,保存。 然后 重新安装 蜘蛛来访插件 即可。

2024-08-31
管理员
order="ontop desc,createdate desc,ordnum desc,id desc"

依次顺序:置顶,发布时间,序号,id

2024-01-18
管理员
{php $sonid=get_sonid_all(2)}
{cms:rs top="10" table="cms_content" where="islock=1 and classid in($sonid)" order="ontop desc,createdate desc,ordnum desc,id desc"}
<a href="{$rs[link]}" title="{$rs[title]}">{$rs[title]}</a>
{/cms:rs}
2024-02-19
管理员

代码如下,要先定义一个id变量

{php $sonid=get_sonid_all(6)}{php $ttid=0}
{cms:rs top="1" table="cms_content" where="islock=1 and ispic=1 and classid in($sonid)" order="ontop desc,ordnum desc,id desc"}
{rs:eof}需要一张有缩略图的新闻信息{/rs:eof}
<a href="{$rs[link]}" title="{$rs[title]}"{if $rs[isurl]==1} target="_blank"{/if}> <img src="{$rs[pic]}" alt="{$rs[title]}" width="500" height="400" /></a> <h2> <a href="{$rs[link]}" title="{$rs[title]}" >{$rs[title]}</a></h2>
{php $ttid=$rs[id]}

{/cms:rs}
{cms:rs top="8" table="cms_content" where="islock=1 and classid in($sonid) and id<>$ttid" order="ontop desc,ordnum desc,id desc"} {rs:eof}暂无资料{/rs:eof} <li><a href="{$rs[link]}" title="{$rs[title]}">{$rs[title]}</a><span>{date('Y-m-d',$rs[createdate])}</span></li> {/cms:rs}

2024-01-10
管理员
<ul>
{php $sonid=get_sonid_all(2)}
{cms:rs top="10" table="cms_content" where="islock=1 and isnice=1 and classid in($sonid)" order="ontop desc,ordnum desc,createdate desc,id desc"}
{rs:eof}内容更新中……{/rs:eof}
<li><i>{if $i>10}0{$i}{else}{$i}{/if}</i>{if $i==1}我是的第一条{/if}<a href="{$rs[link]}" title="{$rs[title]}">{$rs[title]}</a></li>
{/cms:rs}
</ul>
2024-01-09
管理员
‌‌{date('Y-m-d H:i:s',$createdate)}
2024-01-07
管理员

‌‌在首页调用社区最新主题,代码如下:

<ul>
{cms:rs top="8" table="cms_bbs" where="islock=1" order="ontop desc,bbs_id desc"}
<li><a href="{N('bbsshow','','id='.$rs[bbs_id].'')}" title="{$rs[title]}">{$rs[title]}</a></li>
{/cms:rs}
</ul>

排版部分请自行处理CSS

2023-12-28
管理员

‌‌data/config.php增加参数:app_home_token,值随便设置即可关闭

2023-12-22
管理员
多看看,模板中代码,可以学会的
2023-12-18
管理员

不用改源码,默认admin 后台模板(app\admin\view\right.php)里也可以实现

方法如下:

{$this->db->count("select count(1) from cms_content where islock=1")}
2023-12-18
管理员

顶

2023-12-09
管理员

代码如下:

‌{if $rs[yend_time]<time()}
活动已过期
{/if}
2023-12-06
管理员

{cateurl(栏目ID)}  调用栏目链接   

 {get_catename(栏目ID)} 调用栏目名称

举例:<a href="{cateurl(1)}">{get_catename(1)}</a>

2023-10-21
管理员

‌{if intval((time()-$rs[createdate])/86400)<=5}你的代码{/if}

2023-10-09