-
-
Save progress44/7068714204ec1cfd6eec6b07811486ad to your computer and use it in GitHub Desktop.
How to create Magento 2 category programmatically
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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