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

我看到了以下帖子的答案 Magento 静态 CMS 块存储在哪里?关于在 Magento 中以编程方式使用 PHP 生成 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 / Page中设置其他字段的内容。即:

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

领域。这些字段目前为空。到目前为止,我还没有弄清楚这部分。

谢谢


答案 1

给你:

$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();

数组的键是表的字段的名称(检查 db)。为了知道这个值,我手动创建了我想要的cms页面,然后在db中查看这个条目的值。cms_page


答案 2

推荐