Magento 通过 phtml 文件中的锚标记调用 cms 页面
我想要这样的东西<a href="<?php echo getcmsurl('Faqs')">FaQ's</a>
意味着单击常见问题解答的,从管理面板创建的名为 faqs
的 cms 页面将被链接(调用)并显示.
或者还有其他方法吗?
谢谢.
means on clicking FAQ's ,cms page created named faqs
from admin panel would be linked (called) and displayed.
Or is there any other way ?
Thanks.
推荐答案
试试这个
<a href="<?php echo $this->getUrl('Your cms page identifier'); ?>">My url</a>
相关文章