如何将我的 Wordpress 博客拖入 Dreamweaver 网站?
我正在尝试使用 Dreamweaver 制作一个网站。我希望在我的网站上有一个页面,其中包含我的 Wordpress 网站上的所有博客条目,但我不确定如何将数据提取到我的网站中并显示它。
是否必须为每个条目手动完成此操作,或者是否有一种方法可以自动执行此操作?
I'm trying to make a website using Dreamweaver. I'd like to have a page on my website that has all the blog entries from my Wordpress site, but I'm not sure how to pull the data into my site and display it.
Will this have to be done manually by hand for each entry or is there a way that I can automate this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将其自动化。博客是否在同一个域中?如果是这样,这应该可以做到:
希望这会有所帮助。
You can automate it. Is the blog on the same domain? If so, this should do it:
Hope this helps.
jchapa 更快;无论如何我都会发帖,因为这种方法与他的方法略有不同,并且可能更适合。
我使用下面的代码片段连接到同一服务器上的 WordPress:
此代码片段将整个 WordPress 引擎加载到内存中,并且 WordPress 很大。
如果遇到内存限制问题,请将此文件设为包含文件,通过 HTTP 将其包含在 Dreamweaver 文件中。
jchapa was faster; I'll post anyway because this approach is slightly different than his and may suit better.
I use the snippet below to connect to a Wordpress on the same server:
IThis snippet load the whole wordpress engine into memory, and wordpress is BIG.
If you get memory_limit problems, make this a include file that you include via HTTP in your dreamweaver file.