PHP Magento:获取当前的CMS页面ID

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Magento:获取当前的CMS页面ID相关的知识,希望对你有一定的参考价值。

/**
 * 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;		
}

以上是关于PHP Magento:获取当前的CMS页面ID的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 php-url 路径在 Magento CMS 页面中加载图像背景?

PHP 通过cms在magento页面上显示类别块

PHP 从Magento CMS Block获取HTML

通过cms在magento页面上显示类别块

Magento 2在结帐页面phtml中发送到支付网关之前获取订单ID?

PHP magento完全解析cms块