我希望在themes/functions.php
中将客户信息从prestashop获取到wordpress。
我知道prestashop在这个方法中提供了用户信息
$id = $this->context->customer->id_customer;
我在theme / functions.php中添加了带config/settings.inc.php
的prestahsop。
答案 0 :(得分:0)
如果您已包含配置文件且您有客户ID,请执行以下操作:
@GET
@Produces("text/html")
public String getHtml() {
return "Your Hardcoded response";
}
你有所有信息。但请记住,如果您需要有关客户地址的信息,您必须获取客户送货地址ID或发票地址ID并使用相同的信息:$customer = new Customer((int)$id);
答案 1 :(得分:0)
要访问Prestashop的功能和上下文,您只需添加config.inc.php
文件即可。你会在这里找到那个文件
配置/ config.inc.php文件
您可以在Wordpress的主要配置文件wp-load.php