在 帮助 栏目 搜索 上一篇 关键字即可获得你想要的教程。
只能根据用户ID获得会员组ID,然后去判断
代码如下:
代码如下:
{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表示显示条数
方法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()"
以默认模板为例,相关教程如下:
第一步:找到 theme\wzbk001\include\book\body.php,把你需要的相关代码复制粘贴到首页;
第二步:找到 theme\wzbk001\include\book\foot.php,把相关js代码复制粘贴到首页底部;
第三步:把js代码中的 url:'{THIS_LOCAL}' 修改为:url:'{N('book')}'
方法1、可以去掉底部栏目调用where参数里的 and isshow=1
方法2、自己在栏目扩展里增加字段,然后加调用参数(这个更完美)
例如:栏目扩展里增加字段 isfoot 不勾选My 如下图所示:
调用where参数里的 and isshow=1 and isfoot=1
可能是网站目录没有给予修改权限,导致授权码保存失败,请检查下权限后再保存一次试试。
如果感觉发布后的 视频小,可以设置一下宽度和高度;代码如下:
<iframe frameborder="0" src="https://v.qq.com/txp/iframe/player.html?vid=p35060kgfbw" allowfullscreen="true" width="500" height="300"></iframe>
第一步:打开https://v.qq.com/x/page/p35060kgfbw.html 此网址 ,找到并点击视频下方的 分享按钮,再点击 嵌入代码;如下图所示:
第二步:点击 编辑器 右侧的 html代码模式 按钮,把刚才复制的 嵌入代码 粘贴到 编辑器里。如下图所示:
第三步: 再次点击 编辑器 右侧的 html代码模式 按钮,切换到编辑器的设计模式,可以继续添加文字或图片,最后,不要忘记 保存。
全部更新数量
{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}
栏目扩展就是给栏目添加字段,添加后即可直接调用相关字段;
举例:添加字段 subtitle(栏目副标题)字段类型:普通文本
单独调取方法:{get_cate_info(栏目id,'字段名称')}
例如栏目id为1 ,那么调取代码为:{get_cate_info(1,'subtitle')}
注意:添加字段时,没有添加My前缀
免费版和商业版是一样的程序,只是会有些功能上的差异,同时,网址标题会一直提示域名未授权。
不授权,也是可以用的,只是不授权会有些功能上的差异,网址标题会一直提示域名未授权。
总结的很好,大家可以都点击进去看看,或许就能解决一些问题