2.打开模板目录下的:uploads(把里面的内容复制到phpstudy-www的目录下)
3.修改phpstudy(网站的目录位置),打开localhost/install网站安装模板
4.采集网站 用小白兔软件 采集文件放在templets下(可以用别的网站采集软件,可以私聊免费给)
5.登录后台 更改系统基本参数(采集的文件夹名————更新主页模板、更新主页html
6.修改index.htm的js\css\image等文件位置(用织梦标签改)
{dede:global.cfg_templets_skin/}/static/
4.登陆后台,采集数据(注意查看采集网站的代码格式:utf8)
采集时要注意与后面调用的网站内容相匹配
5.采集成功后,导出数据6.运用软件采集网站(改主页后缀名:index.html----index.htm),查看网站,可能有些图片,没有采集过来,手动采集。这个查看代码快捷键:ctrl+u
7.栏目管理—批量增加顶级栏目
7,采集好的网站放到WWW目录下
8.修改dede后台默认目录---然后生成
9.修改index.htm的代码目录(包括js\图片\css)注意:目录位置错误ctrl+h
10.把网站头部、脚部,分别用head.htm\footer.htm,调用出来
11.网站首页完整调用12.修改头部导航栏(注意首页不是栏目)最好使用网站第一个ul替换
13.轮播图替换1.在dede后台新建模型
2.栏目应用模型(属性隐藏),为了好看,在目录下新建article_article.htm
3.打开WWW下的目标目录下的include/extend.fun.php(打开文件后按E快速查找)
复制代码:if(!function_exists('GetImgUrl'))
function GetImgUrl($fieldname, $ftype = 1)
if($fieldname != '')
$dtp = new DedeTagParse();
$dtp->LoadSource($fieldname);
if(is_array($dtp->CTags))
foreach($dtp->CTags as $ctag)
if($ctag->GetName() == 'img')
$width = $ctag->GetAtt('width');
$height = $ctag->GetAtt('height');
$imgurl = trim($ctag->GetInnerText());
$img = '';
if($imgurl != '')
if($ftype == 1)
$img .= $imgurl;
else
$img .= '';
$dtp->Clear();
return $img;
在ul里面更改dede轮播图路径、链接地址等
{dede:arclist typeid=13 row=5 orderby='pubdate' channelid='17' addfields='ljdz,lbt'}
{/dede:arclist}
channelid='17' addfields='ljdz,lbt':这个是新建的模型ID和定义的名字
14.内容更改需要更改3级(调用相应的栏目ID)
代码:一.{dede:type typeid='12'}[field:typename/]{/dede:type}{dede:type typeid='12' }{/dede:type}
{dede:arclist typeid=14 row=1 flag='h' orderby='pubdate' type='image' infolen=20 }
{/dede:arclist}
- [field:title/][field:pubdate function=MyDate('m-d',@me)/]
{dede:arclist typeid=14 row=5 infolen=20 orderby='pubdate' }
{/dede:arclist}
第一级为:指定栏目名和链接
{dede:type typeid='3'}[field:typename/]{/dede:type}
第二级为:文章内容调用(注意文章类型为头条,调用文档带图片)
第三级为:文章内容调用(注意标题字数)
个人笔记,仅供参考使用