将所有 wordpress(少页眉/页脚)提取到 magento 中。我只能获取帖子

发布于 2024-09-18 00:35:02 字数 379 浏览 3 评论 0原文

http://inchoo.net/wordpress/how-to-use-wordpress-home-page-in-magento-home-page-cms-page/comment-page-1/#comment- 8020

来完成让我的 wordpress 在 magento (博客文章)中显示一些信息,但我不明白如何拉入整个页面。我唯一不想要的部分是页眉和页脚。

有什么想法吗?

http://inchoo.net/wordpress/how-to-use-wordpress-home-page-in-magento-home-page-cms-page/comment-page-1/#comment-8020

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

筱果果 2024-09-25 00:35:03

您需要将 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文