管理员

‌在 帮助 栏目 搜索 上一篇 关键字即可获得你想要的教程。星掌大法

2023-09-08
管理员

一起得瑟

2023-08-06
管理员

‌只能根据用户ID获得会员组ID,然后去判断

代码如下:

vip1.png

2023-07-19
管理员

代码如下:

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

注意:top="2,10" 2表示从第三条开始调取,10表示显示条数

2023-06-27
管理员

‌‌方法1:在后台插件管理里下载标签插件,这个可以解决遇到的90%以上标签调用问题;

方法2:代码如下:

{php $sonid=get_sonid_all(2)}
{cms:rs table="cms_content" where="islock=1 and classid in($sonid)" order="rand()"}
标题:<a href="{$rs[link]}">{$rs[title]}</a>
分类:<a href="{cateurl($rs[classid])}">{get_catename($rs[classid])}</a>
日期:{date('Y-m-d',$rs[createdate])}
点击率:{$rs[hits]}
介绍:{cutstr($rs[intro],200,0)}
图片:<img src="{$rs[pic]}" alt="{$rs[title]}" title="{$rs[title]}" />
{/cms:rs}

重点:order="rand()"

2023-06-12
管理员

‌以默认模板为例,相关教程如下:

第一步:找到 theme\wzbk001\include\book\body.php,把你需要的相关代码复制粘贴到首页;

第二步:找到 theme\wzbk001\include\book\foot.php,把相关js代码复制粘贴到首页底部;

第三步:把js代码中的 url:'{THIS_LOCAL}' 修改为:url:'{N('book')}'

2023-04-16
管理员

‌方法1、可以去掉底部栏目调用where参数里的 and isshow=1
方法2、自己在栏目扩展里增加字段,然后加调用参数(这个更完美)

例如:栏目扩展里增加字段 isfoot 不勾选My 如下图所示:

调用where参数里的 and isshow=1 and isfoot=1

2022-11-29
管理员

‌可能是网站目录没有给予修改权限,导致授权码保存失败,请检查下权限后再保存一次试试。

2022-09-02
管理员

如果感觉发布后的 视频小,可以设置一下宽度和高度;代码如下:

<iframe frameborder="0" src="https://v.qq.com/txp/iframe/player.html?vid=p35060kgfbw" allowfullscreen="true" width="500" height="300"></iframe>

2022-07-19
管理员

‌第一步:打开https://v.qq.com/x/page/p35060kgfbw.html 此网址 ,找到并点击视频下方的 分享按钮,再点击 嵌入代码;如下图所示:

腾讯视频

第二步:点击 编辑器 右侧的  html代码模式 按钮,把刚才复制的 嵌入代码  粘贴到 编辑器里。如下图所示:

第三步: 再次点击 编辑器  右侧的 html代码模式 按钮,切换到编辑器的设计模式,可以继续添加文字或图片,最后,不要忘记 保存

2022-07-19
管理员

全部更新数量

{cms:rs field="count(1) as tnum" top="1" table="cms_content" where="islock=1"}{$rs[tnum]}{/cms:rs}

今日更新数量

{php $date=strtotime(date('Ymd'))}
{cms:rs field="count(1) as tnum" top="1" table="cms_content" where="islock=1 and createdate>=$date"}{$rs[tnum]}{/cms:rs}

本周更新数量

{php $week=strtotime(date('Y-m-d',strtotime('-1week')))}
{cms:rs field="count(1) as tnum" top="1" table="cms_content" where="islock=1 and createdate>=$week"}{$rs[tnum]}{/cms:rs}

本月更新数量

{php $month=strtotime(date('Y-m-d',strtotime('-30day')))}
{cms:rs field="count(1) as tnum" top="1" table="cms_content" where="islock=1 and createdate>=$month"}{$rs[tnum]}{/cms:rs}
2022-05-08
管理员

‌栏目扩展就是给栏目添加字段,添加后即可直接调用相关字段;

举例:添加字段 subtitle(栏目副标题)字段类型:普通文本

单独调取方法:{get_cate_info(栏目id,'字段名称')}  

例如栏目id为1 ,那么调取代码为:{get_cate_info(1,'subtitle')} 

注意:添加字段时,没有添加My前缀


2022-03-18
管理员

‌免费版和商业版是一样的程序,只是会有些功能上的差异,同时,网址标题会一直提示域名未授权。

不授权,也是可以用的,只是不授权会有些功能上的差异,网址标题会一直提示域名未授权。


2021-08-01
管理员
<ul>
<li><a href="{$webroot}" title="网站首页"{if IS_HOME} class="hover"{else}{/if}>网站首页</a></li>
{cms:rp top="6" table="cms_category" where="followid=0 and isshow=1" order="catenum,cateid"}{php $head_sonid=$rp[cateid]}
<li><a href="{cateurl($rp[cateid])}" title="{$rp[catename]}"{if $rp[isblank]==1} target="_blank"{/if} class="{is_active($rp[cateid],$parentid,'hover',1)}">{$rp[catename]}{if get_sonid_num($rp[cateid])!=0}<i></i>{/if}</a> {if get_sonid_num($rp[cateid])!=0}
<dl>
{cms:rs top="0" table="cms_category" where="followid=$head_sonid and isshow=1" order="catenum,cateid"}{php $son_sonid=$rs[cateid]}<dd><a href="{cateurl($rs[cateid])}" title="{$rs[catename]}"{if $rs[isblank]==1} target="_blank"{/if}>{$rs[catename]}</a>
{if get_sonid_num($rs[cateid])!=0}<div class="three">{cms:rx top="0" table="cms_category" where="followid=$son_sonid and isshow=1" order="catenum,cateid"}<a href="{cateurl($rx[cateid])}" title="{$rx[catename]}"{if $rx[isblank]==1} target="_blank"{/if}>{$rx[catename]}</a>{/cms:rx}</div>{/if}
</dd>{/cms:rs}
</dl>
{/if} </li>
{/cms:rp}
</ul>
2021-06-18
管理员

‌总结的很好,大家可以都点击进去看看,或许就能解决一些问题

2021-05-09