创建 Magento 站点地图页面
我想为 Magento 创建一个站点地图页面,它将以有序的方式显示所有静态页面。此页面将类似于 http://www.magentocommerce.com/sitemap/ 有没有人创建了 Magento 扩展,或者有人可以指出我正确的方向吗?搜索此功能一直是一场噩梦,因为我得到的只是 Google SEO 结果。
编辑:我想将一些静态页面添加到站点地图中。目前默认站点地图有两个选项:类别和产品。我想要一种方法来设置哪些静态页面可以添加到站点地图中。现在我所做的只是创建一个静态页面,其中填充了指向我的页面和产品的链接。但是,如果客户决定添加新产品,则需要编辑该页面。
I want to create a sitemap page for Magento that will display all the static pages in an orderly fashion. This page is going to be similar to http://www.magentocommerce.com/sitemap/ Has anyone created a Magento Extension or can someone point me in the right direction? Searching for this feature has been a nightmare since all I get are Google SEO results.
Edit: I would like to add some of the static pages to the site map. Currently the default sitemap has two options: Categories and Products. I would like a way to set which of my static pages can be added to the site map. Right now what I have done is just created a static page which I populated with links to my pages and products. However, if the client decides to add new products, it would require that page to be edited.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
内容管理系统页数>管理层次结构
下面的“添加节点”按钮您可以设置 CMS 层次结构和位置。
$collection = Mage::getModel('enterprise_cms/hierarchy_node')->load("root_node_id");
"root_node_id"
是您的“站点地图”的父级。从
$collection
创建树。您还可以看到
enterprise_cms_hierarchy_node
表,您可以使用其中的列作为属性来定位树中的元素。CMS > Pages > Manage Hierarchy
Bellow "Add node" button You can set CMS hierarchy with position.
$collection = Mage::getModel('enterprise_cms/hierarchy_node')->load("root_node_id");
"root_node_id"
is parent of Your "Sitemap".Create tree from
$collection
.Also You can see
enterprise_cms_hierarchy_node
table, you can use columns as atributes from there to position elements inside Your tree.