現在のmagentoストアでのみ親カテゴリを取得したい。私はグーグルで検索し、サブカテゴリが含まれているすべての親カテゴリの結果を取得しました。ただし、親の上位カテゴリのみ、単一の深さのみが必要です。
if(strlen(trim($primary_category_temp)) < 1)
{
$_categories = Mage::helper('catalog/category')->getStoreCategories();
if (count($_categories) > 0):
foreach($_categories as $_category):
$primary_category[] = $_category->getId();
endforeach;
endif;
}