WordPress 博客:导入内容
我正在使用 PHP/MySQL 运行一个网站。现在我想允许在我的网站中使用 WordPress 的博客,这样我就可以将 Google Adsense 与博客内容一起使用。我已使用主机服务提供商提供的工具在我的网站上安装了 Wordpress。
现在我可以将选择性内容从 MySQL 数据库导入到这些 WordPress 博客中吗?如果是这样,怎么办?
谢谢。
I am running a website using PHP/MySQL. Now I want to allow Blogs using wordpress in my website so I can use Google Adsense along with blog content. I have installed Wordpress on my site, using tools provided by host service provider.
Now is there anyway I can import selective-content from MySQL database to these wordpress blogs? If so, how?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
简短回答:也许。
这完全取决于现有 MySQL 数据库中内容的结构。如果旧内容是由内容管理系统创建的,请查看它是否有内置导出器。 WordPress 已经拥有可以从各种常用 CMS 平台导入的插件。检查您的是否受支持。
不幸的是,如果您的内容只是存在于数据库中,而没有 CMS 或任何类型的标准(非自定义)结构,那么这将不会真正起作用。我的建议是使用 phpMyAdmin 导出您的内容,然后使用文本编辑器剪下您想要保留的部分,并在 WordPress 中手动创建新的博客文章。此过程将非常耗时,但如果您想构建自定义导入器,则可以对其进行优化。
Short answer: maybe.
It all depends on how the content in your existing MySQL database was structured. If the old content was created by a content management system, see if it has a built-in exporter. WordPress has plug-ins that can import from a variety of commonly-used CMS platforms already. Check to see if yours is supported.
Unfortunately, if your content was just kind of "there" in the database without a CMS or any kind of standard (non-custom) structure, then this won't really work. My recommendation would be to use phpMyAdmin to export your content, then use a text editor to cut out the portions you want to keep and manually create new blog posts within WordPress. This process will be very time consuming but can be optimized if you want to build a custom importer.
是的,您可以使用以下方式分别从其他网站导入/导出您的内容
互联网上可能还有其他不同的方法。
Yes you can import/export your contents from/to other site respectively using following ways
There may be other different methods also available on the internet.