织梦DEDECMS手机端生成静态页面方法
一、添加后台导航栏目链接
1 打开dede/inc/inc_menu.php,在146行下面添加代码: <m:item name='更新WAP主页' link='makehtml_homepagewap.php' rank='sys_MakeHtml' target='main' /> <m:item name='更新WAP栏目' link='makehtml_listwap.php' rank='sys_MakeHtml' target='main' /> <m:item name='更新WAP文档' link='makehtml_archiveswap.php' rank='sys_MakeHtml' target='main' />
二、更新WAP主页
1.复制文件dede/makehtml_homepage.php,重命名为makehtml_homepagewap.php2.打开makehtml_homepagewap.php,找到最后一行
1
include DedeInclude('templets/makehtml_homepage.htm');
修改为
1
include DedeInclude('templets/makehtml_homepagewap.htm');
3.复制文件dede/templets/makehtml_homepage.htm,重命名为makehtml_homepagewap.htm
4打开dede/templets/makehtml_homepagewap.htm 修改21行
1
<form action="makehtml_homepage.php" method="post" name="form1" target="stafrm">
修改为
1
<form action="makehtml_homepagewap.php" method="post" name="form1" target="stafrm">
4.修改36行,指定生成WAP主页模板
1
<input name="templet" type="text" id="templet" style="width:300" value="default/wap.htm">
5.修改48行,指定生成WAP主页路径
1
<td height="20" valign="top" bgcolor="#FFFFFF"><input name="position" type="text" id="position" value="../m/index.html" size="30">
6.修改69~70行,“checked”移到“不保存当前选项”,系统默认是提交保存主页模板和路径数据的
1
<input name="saveset" type="radio" value="0" class="np" checked>
不保存当前选项
1
<input name="saveset" type="radio" class="np" value="1" >
保存当前选项
END
三、更新WAP栏目页1.复制文件dede/makehtml_list.php,重命名为makehtml_listwap.php
2.打开makehtml_listwap.php,找到最后一行
1
include DedeInclude('templets/makehtml_list.htm');
修改为
1
include DedeInclude('templets/makehtml_listwap.htm');
3.复制文件dede/templets/makehtml_list.htm 重命名为makehtml_listwap.htm ,修改第10行
1
<form name="form1" action="makehtml_list_action.php" method="get" target='stafrm'>
修改为
1
<form name="form1" action="makehtml_listwap_action.php" method="get" target='stafrm'>
4.复制dede/makehtml_list_action.php 重命名makehtml_listwap_action.php
1
require_once(DEDEINC."/arc.listview.class.php");
修改为
1
require_once(DEDEINC."/arc.listwapview.class.php");
5.复制include/arc.listview.class.php 重命名为arc.listwapview.class.php
1
2
3
4
5
6
7
8
9
if(!file_exists($tempfile))
{
$tempfile = $GLOBALS['cfg_basedir'].$GLOBALS['cfg_templets_dir']."/".$GLOBALS['cfg_df_style']."/list_default.htm";
}
if(!file_exists($tempfile)||!is_file($tempfile))
{
echo "模板文件不存在,无法解析文档!";
exit();
}
替换为
1
- 上一篇:织梦自定义表单发送邮件
- 下一篇:织梦CMS网站被入侵该如何解决?
☉本站的源码不会像其它下载站一样植入大量的广告。为了更好的用户体验以后坚持不打水印
☉本站只提供精品源码,源码在于可用,不在多!!希望在这里找到你合适的。
☉本站提供的整站程序,均带数据及演示地址。可以在任一源码详情页查看演示地址
☉本站所有资源(包括源码、模板、素材、特效等)仅供学习与参考,请勿用于商业用途。
☉如有其他问题,请加网站客服QQ(984818011)进行交流。
- 织梦dede首页列表页获取文章对应的tag标签
- 织梦dede导航栏目顶级和二级判断二级输出不同url
- 织梦dede标签array runphp静态生成乱码BUG解决方法
- 织梦dede如何禁止会员发布文章内容带超链接
- 织梦ajax跨域提交自定义表单和跨域验证码问题
- 织梦CMS MIP文章内容页图片适配百度MIP规范
- 织梦CMS时间格式实现XX秒前、XX分钟前、XX天前
- 织梦DedeCMS更新系统缓存增加清理沉余缓存的功能
- 织梦CMS让channelartlist标签支持currentstyle属性的
- 织梦dede自带编辑器替换百度ueditor编辑器
- 织梦DEDECMS整站动态化或整站静态化设置方法
- 织梦dede 模板路径templets目录都有什么?