Magento:获取当前CMS页面ID
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Magento:获取当前CMS页面ID相关的知识,希望对你有一定的参考价值。
A function for returning the ID of the current CMS page
/** * Returns the identifier for the currently rendered CMS page. * If current page is not from CMS, null is returned. * @return String | Null */ public function getCurrentCmsPage() { $dataCurrentPage = $this->getHelper('cms/page')->getPage()->getData(); if ($dataCurrentPage) { $identifierCurrentPage = $dataCurrentPage['identifier']; return $identifierCurrentPage; } return; }
以上是关于Magento:获取当前CMS页面ID的主要内容,如果未能解决你的问题,请参考以下文章
Magento 2在结帐页面phtml中发送到支付网关之前获取订单ID?