フッターにもこのコードを使用できますが、Magento 管理者からキャッシュを削除して変更を確認することを忘れないでください。
<?php
$homepage = Mage::getBlockSingleton('page/html_header')->getIsHomePage();
if($homepage)
{
echo "Homepage!";
} else {
echo "NOT on Homepage!";
}
?>
または、ホームページのフッターに特定の静的ブロックのみを表示したい場合は、ホームページのリソースを介して呼び出すだけです。このためには、[CMS] > [ページ] > [ホームページを選択] に移動し、左側のサイド バーから [デザイン] をクリックして、ここにコードを配置します。
<reference name="footer">
<block type="page/html_footer" name="footer" as="footer" template="page/html/footer.phtml">
<block type="page/switch" name="store_switcher" as="store_switcher" template="page/switch/stores.phtml"/>
<block type="page/template_links" name="footer_links" as="footer_links" template="page/template/links.phtml"/>
<block type="cms/block" name="custom_footer_block">
<action method="setBlockId">
<block_id>custom_footer_block</block_id>
</action>
</block>
</block>
</reference>
それが役に立てば幸い、
ありがとう