_postFactory = $postFactory; } /** * {@inheritdoc} * @SuppressWarnings(PHPMD.ExcessiveMethodLength) */ public function install(ModuleDataSetupInterface $setup, ModuleContextInterface $context) { $data = [ 'title' => 'Hello world!', 'meta_keywords' => 'magento 2 blog', 'meta_description' => 'Magento 2 blog default post.', 'identifier' => 'hello-world', 'content_heading' => 'Hello world!', 'content' => '
Welcome to Magefan blog extension for Magento® 2. This is your first post. Edit or delete it, then start blogging!
Please also read Online documentation and How to add "read more" tag to post content
Follow Magefan on:
', 'store_ids' => [0] ]; $this->_postFactory->create()->setData($data)->save(); } }