Skip to content

Instantly share code, notes, and snippets.

@paulmouzas
Created September 28, 2015 20:45
Show Gist options
  • Save paulmouzas/aac3205922a574cbad95 to your computer and use it in GitHub Desktop.
Save paulmouzas/aac3205922a574cbad95 to your computer and use it in GitHub Desktop.
<?php
// script to remove categories from navigation menu
// $children = Mage::getModel('catalog/category')->getCategories(7);
require_once 'app/Mage.php';
Mage::app();
$category = Mage::getResourceModel("catalog/category_collection")->addFieldToFilter("name" , "Aphex Twin");
$cat_det=$category->getData();
$category_id=$cat_det[0][entity_id];
echo $category_id;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment