以编程方式在 Magento 中创建 CMS/页面
2022-08-30 23:04:35
我看到了以下帖子的答案 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 列)
- 元关键字
- 元描述
领域。这些字段目前为空。到目前为止,我还没有弄清楚这部分。
谢谢