wordpress网站转yzmcms,数据无缝对接
时间:2024年01月03日
/来源:网络
/编辑:佚名
当我们的网站原来是用wordpress做的现在想转用yzmcms程序,我们就需要将模板和数据都转到yzmcms并且保持原来的链接Url不能变,至于模板是比较简单的,浏览器另存为html文件再对照官方标签文档套用即可,这里小编推荐yzmcms模板标签助手但是数据库要转移至yzmcms这时该怎么办呢,本文小编就来分享一下wordpress网站数据库无缝转移至yzmcms,话不多说,直接上代码:
/**插入基础表信息**/
insert into yzm_article (id,catid,userid,username,nickname,title,seo_title,inputtime,updatetime,keywords,description,click,content,copyfrom,thumb,articledir,url,flag,status,system
,listorder,groupids_view,readpoint
) select ID,0,post_author,'','',post_title,post_title,unix_timestamp(post_date),unix_timestamp(post_modified),'','',0,post_content,'','','',guid,'',1,1,10,0,0
from wp_posts where post_parent=0 and post_type='post' and (post_status='publish' or post_status='draft' or post_status='auto-draft')
/**将文章的缩略图信息进行修改**/
update yzm_article y inner join (select s.guid,s.post_parent,a.post_id,a.meta_value from wp_posts s,wp_postmeta a where meta_key='_thumbnail_id' and a.meta_value=s.ID
) c on y.id =c.post_id set y.thumb = c.guid
/**将文章的摘要信息进行修改**/
update yzm_article y inner join (select s.guid,s.post_parent,a.post_id,a.meta_value from wp_posts s,wp_postmeta a where meta_key='zhaiyao_value' and a.post_id=s.ID
) c on y.id =c.post_id set y.description = c.meta_value
/**将文章的阅读数进行修改**/
update yzm_article y inner join (select s.guid,s.post_parent,a.post_id,a.meta_value from wp_posts s,wp_postmeta a where meta_key='views' and a.post_id=s.ID
) c on y.id =c.post_id set y.click = c.meta_value
/**将文章的来源信息进行修改**/
update yzm_article y inner join (select s.guid,s.post_parent,a.post_id,a.meta_value from wp_posts s,wp_postmeta a where meta_key='laiyuan_value' and a.post_id=s.ID
) c on y.id =c.post_id set y.copyfrom = c.meta_value
/**添加分类**/
insert yzm_category(catid,catname,catdir,mobname,category_template
,list_template
,show_template,
arrchildid,
modelid
)
select s.term_id,s.name,s.slug,s.name,'category_page','list_article','show_article',s.term_id,1 from wp_terms s,wp_term_taxonomy y where y.taxonomy='category' and y.term_id = s.term_id
/**操作分类和文章的关系**/
update yzm_article y inner join (
select object_id,a.term_taxonomy_id,b.taxonomy from wp_term_relationships a,wp_term_taxonomy b where a.term_taxonomy_id=b.term_id and taxonomy='category')
c on y.id =c.object_id set y.catid = c.term_taxonomy_id
/**操作标签**/
insert yzm_tag (id,tag,total,inputtime)
select a.term_id,b.`name`,a.count,1551964444 from wp_term_taxonomy a,wp_terms b WHERE a.term_id=b.term_id and a.taxonomy='post_tag';
/**操作标签和文章的关系**/
insert yzm_tag_content (modelid,aid,tagid,catid)
select 1,object_id,term_taxonomy_id,b.catid from wp_term_relationships a,yzm_article b where a.object_id=b.id
以上是文章、分类、标签tag、缩略图等包含网站大部分数据了。
先将wordress网站的数据库中的以下数据表导出.sql文件,
然后,分别将这些.sql导入至yzmcms程序的数据库中,最后再用上面的代码分别执行一次,这样进入yzmcms程序的后台再看数据就会发现数据已经全部转过来了,最后系统设置里填写好域名,再批量更新URL,至此,wordpress数据就全部成功转移至yzmcms了。
/**插入基础表信息**/
insert into yzm_article (id,catid,userid,username,nickname,title,seo_title,inputtime,updatetime,keywords,description,click,content,copyfrom,thumb,articledir,url,flag,status,system
,listorder,groupids_view,readpoint
) select ID,0,post_author,'','',post_title,post_title,unix_timestamp(post_date),unix_timestamp(post_modified),'','',0,post_content,'','','',guid,'',1,1,10,0,0
from wp_posts where post_parent=0 and post_type='post' and (post_status='publish' or post_status='draft' or post_status='auto-draft')
/**将文章的缩略图信息进行修改**/
update yzm_article y inner join (select s.guid,s.post_parent,a.post_id,a.meta_value from wp_posts s,wp_postmeta a where meta_key='_thumbnail_id' and a.meta_value=s.ID
) c on y.id =c.post_id set y.thumb = c.guid
/**将文章的摘要信息进行修改**/
update yzm_article y inner join (select s.guid,s.post_parent,a.post_id,a.meta_value from wp_posts s,wp_postmeta a where meta_key='zhaiyao_value' and a.post_id=s.ID
) c on y.id =c.post_id set y.description = c.meta_value
/**将文章的阅读数进行修改**/
update yzm_article y inner join (select s.guid,s.post_parent,a.post_id,a.meta_value from wp_posts s,wp_postmeta a where meta_key='views' and a.post_id=s.ID
) c on y.id =c.post_id set y.click = c.meta_value
/**将文章的来源信息进行修改**/
update yzm_article y inner join (select s.guid,s.post_parent,a.post_id,a.meta_value from wp_posts s,wp_postmeta a where meta_key='laiyuan_value' and a.post_id=s.ID
) c on y.id =c.post_id set y.copyfrom = c.meta_value
/**添加分类**/
insert yzm_category(catid,catname,catdir,mobname,category_template
,list_template
,show_template,
arrchildid,
modelid
)
select s.term_id,s.name,s.slug,s.name,'category_page','list_article','show_article',s.term_id,1 from wp_terms s,wp_term_taxonomy y where y.taxonomy='category' and y.term_id = s.term_id
/**操作分类和文章的关系**/
update yzm_article y inner join (
select object_id,a.term_taxonomy_id,b.taxonomy from wp_term_relationships a,wp_term_taxonomy b where a.term_taxonomy_id=b.term_id and taxonomy='category')
c on y.id =c.object_id set y.catid = c.term_taxonomy_id
/**操作标签**/
insert yzm_tag (id,tag,total,inputtime)
select a.term_id,b.`name`,a.count,1551964444 from wp_term_taxonomy a,wp_terms b WHERE a.term_id=b.term_id and a.taxonomy='post_tag';
/**操作标签和文章的关系**/
insert yzm_tag_content (modelid,aid,tagid,catid)
select 1,object_id,term_taxonomy_id,b.catid from wp_term_relationships a,yzm_article b where a.object_id=b.id
以上是文章、分类、标签tag、缩略图等包含网站大部分数据了。
先将wordress网站的数据库中的以下数据表导出.sql文件,
然后,分别将这些.sql导入至yzmcms程序的数据库中,最后再用上面的代码分别执行一次,这样进入yzmcms程序的后台再看数据就会发现数据已经全部转过来了,最后系统设置里填写好域名,再批量更新URL,至此,wordpress数据就全部成功转移至yzmcms了。
新闻资讯 更多
- 【wordpress教程】WordPress跟踪记录访客在网站的搜索词 优化网站内容和搜索体验03-31
- 【wordpress教程】Zibll子比主题的用户中心修改头像增加支持上传PNG图片文件03-31
- 【wordpress教程】wordpress报错429怎么办03-28
- 【wordpress教程】wordpress如何批量删除指定分类目录下的所有文章03-23
- 【wordpress教程】Wordpress 在文章内容的第二段后面插入广告03-03
- 【wordpress教程】WordPress纯代码禁止发表重复标题的文章03-03
- 【wordpress教程】给wordpress博客-VIEU主题评论框添加打字特效(其他主题类似)03-03
- 【wordpress教程】wordpress自动批量定时发布插件 DX-auto-publish02-08
热门文章
- 178Moban源码谈谈免费源码与收费源码的区别
- 2帝国CMS忘记后台登陆用户名、密码、认证码的解决方法
- 3帝国CMS(EmpireCMS) v7.5后台任意代码执行漏洞及具体修复方法
- 4帝国CMS和WordPress 哪个好?哪个适合建站?
- 5如何解决Discuz的密码错误次数过多请15分钟后登陆的问题
- 6帝国cms灵动标签取得内容和栏目链接地址
- 7emlog pro 注册码“开心”教程(如果有一天,emlog官方版 或者 emlog免费版 跑路了,那用户怎么办?)
- 8织梦CMS在nginx下设置伪静态方法(附nginx伪静态规则)
- 9帝国cms后台登录出现”您还未登录”怎么解决?
- 10帝国cms7.5忘记登录密码 和忘记登录认证码以及多次登录 失败被锁定解决办法