Hi, what I want to do is have a sidebar that, on the homepage, shows news items (anynews module), and any other pages shows other content (eg photos).
This is essentially what I want to do below, but don't know the exact syntax:
<?php
if(HOME_PAGE) {
display_news_items();
else
<h2>photos</h2>
<img src="">etc
}
?>
If anyone could help out here that would be great!