Hi there,
I would like to add in my sidebar (sidebar.php) another sidebox (<li class="sidebox">), BUT SIDEBOX I ONLY WANT TO APPEAR ON MY HOME PAGE (NOT ON OTHER PAGES!!).
How can I do this?
Many thanks,
Michel
Hi there,
I would like to add in my sidebar (sidebar.php) another sidebox (<li class="sidebox">), BUT SIDEBOX I ONLY WANT TO APPEAR ON MY HOME PAGE (NOT ON OTHER PAGES!!).
How can I do this?
Many thanks,
Michel
Just use this
<?php /* If this is the frontpage */ if ( is_home() ) { ?>
Your code goes here
<?php } ?>This topic has been closed to new replies.