PHP建站技术分享-从入门到精通PHP建站技术分享-从入门到精通PHP建站技术分享-从入门到精通

QQ:420220301 微信/手机:150-3210-7690
当前位置:首页 > CMS教程 > LeCMS

开发小技巧总结-教程-Lecms 交流论坛

管理员 2022-12-09
LeCMS
20

1、不想每个页面都使用独立的header,又需要不同页面header里面的内容不一样,该怎么办?

{inc:header.htm}

在inc-header.htm文件夹当中编写代码判断:

<!doctype html><html lang="zh-Hans"><head>	<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>	<meta http-equiv="X-UA-Compatible" content="ie=edge" />	<meta name="generator" content="LECMS" />	<meta name="renderer" content="webkit">	<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">    {php}$control = isset($_GET['control']) ? strtolower($_GET['control']) : '';$action = isset($_GET['action']) ? strtolower($_GET['action']) : '';{/php}	{if:$control=='index' && $action == 'index'}	我是首页	{elseif:$control=='cate' && $action == 'index'}	我是分类页	{elseif:$control=='show' && $action == 'index'}	我是内容页	{elseif:$control=='tag' && $action == 'index'}	我是标签页	{elseif:$control=='search' && $action == 'index'}	我是搜索页	{elseif:$control=='comment' && $action == 'index'}	我是内容评论页	{elseif:$control=='tag' && $action == 'top'}	我是热门标签页	{else}	其他页面	{/if}</head>

2、分类页模板获取当前分类信息(分类名、分类URL),同样也适用于标签页。

分类名/标签名:{$cfg_var[name]}分类URL/标签URL:{$cfg_var[url]}其他信息你可以先打印查看哦:{php}print_r($cfg_var);{/php}

3、内容页,允许评论才显示评论表单,不允许则无评论表单!

{if:$cfg[open_comment] && empty($gdata[iscomment])}评论表单HTML{/if}$cfg[open_comment]:表示开启全站评论功能!empty($gdata[iscomment]):表示当前内容不禁止评论,就是允许评论。

希望以上内容对你有所帮助!如果还有其他问题,请随时提问。 各类知识收集 拥有多年CMS企业建站经验,对 iCMS, Fastadmin, ClassCMS, LeCMS, PbootCMS, PHPCMS, 易优CMS, YzmCMS, 讯睿CMS, 极致CMS, Wordpress, HkCMS, YznCMS, WellCMS, ThinkCMF, 等各类cms的相互转化,程序开发,网站制作,bug修复,程序杀毒,插件定制都可以提供最佳解决方案。

相关推荐

扫码关注

qrcode

QQ交谈

回顶部