当前位置: 首页 模板标签搜索表单 module 文档变量(search通用)(点击按钮复制代码 / 点击标题进入详情) 标题 {$t.title} 链接 {$t.url} 标题截取 {dr_strcut($t.title, 30, '...')} 缩略图 // 默认大小200*200PX {dr_thumb($t.thumb)} // 指定缩略图大小为400*300PX {dr_thumb($t.thumb, 400, 300)} // 缩略图原图 {dr_get_file($t.thumb)} 缩略图判断 {if $t.thumb}{dr_thumb($t.thumb)}{else}/static/assets/images/nopic.gif{/if} 描述 {$t.description} 描述截取 {dr_strcut($t.description, 200, '...')} 当前行数1 {$key+1} 当前行数判断 {if ($key+1)%2==0}双{else}单{/if} 更新时间 // 默认 {$t.updatetime} // 年月日 {dr_date($t._updatetime, 'Y-m-d')} // 年月日时分秒 {dr_date($t._updatetime, 'Y-m-d H:i:s')} // 时间友好 {dr_fdate($t['_updatetime'])} 录入时间 // 默认 {$t.inputtime} // 年月日 {dr_date($t._inputtime, 'Y-m-d')} // 年月日时分秒 {dr_date($t._inputtime, 'Y-m-d H:i:s')} // 时间友好 {dr_fdate($t['_inputtime'])} 浏览次数 // 浏览次数(静) {intval($t['hits'])} // 浏览次数(动) - 首页 {dr_show_hits($t['hits'], '', 'news')} // 浏览次数(动) - 列表 {dr_show_hits($t.id)} 栏目名称 {dr_cat_value($t.catid, 'name')} 栏目链接 {dr_cat_value($t.catid, 'url')} 栏目缩略图 // news为模块名称,请根据自己实际模块更改 {dr_get_file(dr_cat_value('news', $t['catid'], 'thumb'))} 父栏目名称 // news为模块名称,请根据自己实际模块更改 {dr_cat_value('news', dr_cat_value('news', $t['catid'], 'pid'), 'name')} 父栏目链接 // news为模块名称,请根据自己实际模块更改 {dr_cat_value($t.mid, dr_cat_value('news', $t['catid'], 'pid'), 'url')} 是否第一条 {if $is_first}第一条{/if} 是否最后一条 {if $is_last}最后一条{/if} 笔名 {$t.author} 会员id {$t['uid']} 会员头像 {dr_avatar($t['uid'])} 内容 // 需要联合副表查询 {$t['content']} // 内容截取100字 {dr_strcut($t['content'],100)} // 内容截取100字去省略号 {dr_strcut($t['content'], 100,'')} // 内容去掉html再截 {dr_strcut(dr_clearhtml($t['content']), 10, '...')} 描述 {$t.description} 描述截取 // 描述截取80字 {dr_strcut($t.description, 80)} // 描述截取80字去省略号 {dr_strcut($t.description,80,'')} 会员其他字段 {php $user=dr_member_info($t['uid']);} 会员name:{$user.name} 会员username:{$user.username} 会员phone:{$user.phone} 会员email:{$user.email} TAG标签 {php $kws = dr_get_content_tags($t.keywords);} {if $kws} {loop $kws $name $url} <a href="{$url}" target="_blank">{$name}</a> {/loop} {/if} 搜索页相关列表(点击按钮复制代码 / 点击标题进入详情) 单模块搜索结果数据列表 {search module=MOD_DIR id=$searchid total=$sototal order=$params.order catid=$catid page=1 pagesize=5 urlrule=$urlrule} 标题:{$t.title} 地址:{$t.url} 描述:{$t.description} 截取20字 {dr_strcut($t.description, 20)} 自定义时间:{dr_date($rs._updatetime, 'Y-m-d')} {/search} 全模块搜索结果数据列表 {related module=all field=title,url,thumb,description,keywords,updatetime,catid tag=$keyword order=inputtime urlrule=$urlrule page=1 pagesize=10} 标题:{$t.title} 地址:{$t.url} 描述:{$t.description} 截取20字 {dr_strcut($t.description, 20)} 自定义时间:{dr_date($rs._updatetime, 'Y-m-d')} {/related} 搜索分页条 {$pages} 单模块搜索带栏目模型字段列表 {search module=MOD_DIR id=$searchid total=$sototal order=$params.order more=1 catid=$catid page=1 pagesize=5 urlrule=$urlrule} 标题:{$t.title} 地址:{$t.url} 描述:{$t.description} 截取20字 {dr_strcut($t.description, 20)} 自定义时间:{dr_date($rs._updatetime, 'Y-m-d')} {/search} 网站表单相关标签(点击按钮复制代码 / 点击标题进入详情) 在线留言表单(自定义) {php extract(dr_get_form_post_value('表单字段名称'))} <form action="{$post_url}&is_show_msg=1" method="post" name="myform" id="myform"> {$form} <input type="text" name="data[title]" id="dr_title"> <input type="text" name="data[dianhua]" id="dr_dianhua"> <textarea name="data[shuoming]" id="dr_shuoming"></textarea> <button type="submit">普通提交</button> </form> 在线留言表单(官方) {php extract(dr_get_form_post_value('表单英文名称'));} {$post_url}&is_show_msg=1 {$form} {$myfield} {$diyfield} {$sysfield} {if $is_post_code} {dr_lang('验证码')} <input type="text" name="code"> {dr_code(120, 35)} {/if} 调用留言表单10条数据 {form form=liuyan order=inputtime num=10} 主题:{$t.title}.... 时间:{$t.inputtime} 内容地址:{dr_form_show_url('liuyan', $t.id)} 自定义更新时间:{dr_date($t._inputtime, 'Y-m-d')} {/form} 调用留言表单所有数据并分页 // 留言表单名称可以自定义,那么form=自定义名称 {form form=liuyan order=inputtime page=1 pagesize=5 urlrule=index.php?page=[page]} 主题:{$t.title} 内容地址:{dr_form_show_url('liuyan', $t.id)} .... {/form} {$pages} // 分页输出字符串 // urlrule是分页规则,根据你的实际页面来写,例子中是首页分页 验证码 {if $is_post_code}{dr_lang('验证码')}<input type="text" name="code">{dr_code(120, 35)}{/if} 验证码src {WEB_DIR}index.php?s=api&c=api&m=captcha&width=120&height=35 验证码img <img align="absmiddle" style="cursor:pointer;width:120px;height:35px;" onclick="this.src=this.src+'?'" src="{WEB_DIR}index.php?s=api&c=api&m=captcha&width=120&height=35" /> 提示信息与跳转 <p>{$msg}</p><p>{if $url}<a href="{$url}">如果您的浏览器没有自动跳转,请点击这里</a><meta http-equiv="refresh" content="{$time}; url={$url}">{else}<a href="{$backurl}" >[点击返回上一页]</a>{/if}</p> 声明:禁止复制、盗用、采集、发布本站内容到任何网站及各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。 天客隆模板网管理员 扫码免费体验 GPT-4 链接