将所有 wordpress(少页眉/页脚)提取到 magento 中。我只能获取帖子
来完成让我的 wordpress 在 magento (博客文章)中显示一些信息,但我不明白如何拉入整个页面。我唯一不想要的部分是页眉和页脚。
有什么想法吗?
to accomplish getting my wordpress to show some info inside magento (blog posts) but I can not understand how to pull in the entire page. The only part I don't want is the header and footer.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将
wp-blog-header.php
包含到您的 magento 模板中。如果您在 magento 模板顶部添加以下行,您将可以访问所有 WP 命令:
require_once($_SERVER['DOCUMENT_ROOT'].'/wp-blog-header.php');
(确保使用正确的路径)
现在您只需创建一个循环并显示邮政。如果您愿意,您还可以获取来自特定类别的帖子。
You need to iclude the
wp-blog-header.php
to your magento template.If you add the following line at the top of your magento template, you will have access to all WP commands:
require_once($_SERVER['DOCUMENT_ROOT'].'/wp-blog-header.php');
(make sure you use the right path)
Now you just ned to create a loop and display the post. You may also get posts from a specific category if you wish.