在 Magento 中以编程方式创建 CMS/页面

问题描述 投票:0回答:1

我看到了帖子的以下答案Magento 静态 CMS 块存储在哪里?关于以编程方式使用 PHP 在 Magento 中生成 cms/块。

我将代码更改为以下

$newBlock = Mage::getModel('cms/page')
      ->setTitle('Test CMS Page Title')
      ->setContent('Hello I\'m a new cms page.')
      ->setIdentifier('this-is-the-page-url')
      ->setIsActive(true)
      ->save();

...并且它有效。 我看到后端的 CMS 页面区域中显示了一个新页面。

我需要添加的是能够设置 CMS/页面中其他字段的内容。 即:

  • 布局(尝试设置为 1 列)
  • 元关键字
  • 元描述

田野。 这些字段目前为空。 到目前为止我还没能弄清楚这部分。

谢谢,

php magento content-management-system
1个回答
37
投票

给你:

$cmsPageData = array(
    'title' => 'Test CMS Page Title',
    'root_template' => 'one_column',
    'meta_keywords' => 'meta,keywords',
    'meta_description' => 'meta description',
    'identifier' => 'this-is-the-page-url',
    'content_heading' => 'content heading',
    'stores' => array(0),//available for all store views
    'content' => "Hello I'm a new cms page."
);

Mage::getModel('cms/page')->setData($cmsPageData)->save();

数组的键是

cms_page
表的字段名称(检查数据库)。要了解该值,我手动创建所需的 cms 页面,然后在数据库中查看此条目的值。

© www.soinside.com 2019 - 2024. All rights reserved.