Skip to content

Instantly share code, notes, and snippets.

@jonazu
Created June 26, 2014 13:43
Show Gist options
  • Select an option

  • Save jonazu/7e010e40263f3a852e71 to your computer and use it in GitHub Desktop.

Select an option

Save jonazu/7e010e40263f3a852e71 to your computer and use it in GitHub Desktop.
foreach (Mage::app()->getWebsites() as $website) {
foreach ($website->getGroups() as $group) {
$stores = $group->getStores();
foreach ($stores as $store) {
echo '<link rel="alternate" href="' . $store->getCurrentUrl() . '" hreflang="' . $store->getConfig('general/locale/code') . '"/>' . "\n";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment