Show only on front page and different on another page
Description
PHP Source Code
<!--Conditional Statement to show different menu from Homepage Start-->
<?php
if (is_front_page())
{?>
This is what you want to show on frontpage
<?php } else { ?>
This is what you want to show on all other pages except frontpage
<?php } ?>
<!--Conditional Statement to show different menu from Homepage End-->