phpcmsv9首页布局的修改页面在哪里
发布网友
发布时间:2022-03-28 23:59
我来回答
共3个回答
懂视网
时间:2022-03-29 04:20
php程序首页栏目修改如下:
1、打开目录: phpcms templates default content 。
2、修改网站首页文件为: index html文件即可。
php作为网络开发的强大语言之一,现在应用非常广泛,具有开放源代码,跨平台性强,开发快捷,效率高,面向对象,并且易于上手,专业专注等诸多优点。各种PHP开发框架也让程序开发变的简单有效。
热心网友
时间:2022-03-29 01:28
在phpcms\\templates\\default\\content目次下的index.html就是首页的模板。
第一步:将美工新设计的模板放置到phpcms/templates/default/模块目录名/模板文件名.html
如: phpcms/templates/default/content/category_new.html
如: phpcms/templates/default/content/category_download_new.html
如: phpcms/templates/default/content/category_picture_new.html
[html] view plaincopy
第二步:找到phpcms/templates/default/config.php配置文件添加如下代码(红色标注):
array (
'templates|default|content' => //content-代表内容模块的模板风格
array (
'category.html' => '文章频道页',
'category_new.html' => '文章频道页',
'category_download.html' => '下载频道页',
'category_download_new.html' => '下载频道页',
'category_picture.html' => '图片频道页',
'category_picture_new.html' => '图片频道页',
'download.html' => '下载连接页',
'footer.html' => '底部',
[html] view plaincopy
第三步:到后台去选择新的栏目页、列表页、内容详情页模板 。
热心网友
时间:2022-03-29 02:46
找到了,在phpcms\\templates\\default\\content目次下的index.html就是首页的模板,