Skip to content

Instantly share code, notes, and snippets.

@progress44
Forked from harshvardhanmalpani/createCat.php
Created May 24, 2019 22:32
Show Gist options
  • Save progress44/7068714204ec1cfd6eec6b07811486ad to your computer and use it in GitHub Desktop.
Save progress44/7068714204ec1cfd6eec6b07811486ad to your computer and use it in GitHub Desktop.
How to create Magento 2 category programmatically
<?php
//creating categories in magento 2
//last verified Magento 2.2.0 27 Oct 2017
use \Magento\Framework\App\Bootstrap;
echo 'code by harshvardhanmalpani';
include('./app/bootstrap.php');
$bootstrap = Bootstrap::create(BP, $_SERVER);
$objectManager = $bootstrap->getObjectManager();
function createCategory($a='',$b=2,$c=true,$d='',$e='',$f='',$g='') {
global $objectManager;
$category = $objectManager->get('\Magento\Catalog\Model\CategoryFactory')->create();
$category->setName($a);
$category->setParentId($b); // 1: root category.
$category->setIsActive($c);
$category->setCustomAttributes([
'description' => $d,
'meta_title' => $e,
'meta_keywords' => $f,
'meta_description' => $g,
]);
$objectManager->get('\Magento\Catalog\Api\CategoryRepositoryInterface')->save($category);
}
createCategory("Abc");
createCategory("Xyz",4,false,"description","m title");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment