【发布时间】:2012-08-12 17:14:32
【问题描述】:
我已经阅读了很多类似的问题,
但没有找到答案
我必须在 wordpress 博客中显示客户姓名和购物车商品
我已经安装了 Mage Enabler。但它总是显示无效的 URL。 本地电脑的有效网址是什么?
所以我也做过类似的,
require_once ("../app/Mage.php");
umask(0);
Mage::app();
Mage::getSingleton("core/session", array('name' => 'frontend'));
$session = Mage::getSingleton("customer/session");
if($session->isLoggedIn())
{echo "YES";}
else {echo "NO";}
我总是得到“不”.. :(
谁能帮我在wordpress中访问magento会话
【问题讨论】:
标签: wordpress session magento integration