I dont know PHP and need some help. I am customizing my blog template... One element of the page has this code: Which, if i am not misten, makes everything within that command display only on the homepage. I was wondering how i can do the inverse; What code do i write to make the elements within display always except the homepage? Thanks for your help in advance.
Or: <?php /* If this is the front page */ if (is_home()) { ?> stuff to go on the front page <?php } else { ?> stuff to go on the other pages <?php } ?>