电话
13363039260
1、自定义页面存放目录说明: |
<?php include(ECMS_PATH.'userpage.html');?>与<!--#include file="/userpage.html"--> |
上面例子是以自定义页面生成到根目录为例,你也可以单独建个自定义页面存放目录,比如:/incpage/ 目录那模板include就是用: <?php include(ECMS_PATH.'/incpage/userpage.html');?>与<!--#include file="/incpage/userpage.html"--> |
2、自定义页面可以设置定义生成,以让文件内容实时更新: |
在后台>“系统”>“计划任务”>“管理刷新任务”里增加定时刷新自定义页面。 |
3、如果是不同栏目不同自定义页面如何引用? |
(1)、增加自定义页面按栏目ID命名,比如:/incpage/userpage1.html (其中1为栏目ID) (2)、模板中include文件用: <?php include(ECMS_PATH.'/incpage/userpage'.$GLOBALS[navclassid].'.html');?> 或 <!--#include file="/incpage/userpage<?=$GLOBALS[navclassid]?>.html"--> |