I like to hide some content from my sidebar when at home. I learnt about is_home() but I really don't know how to use it.
Content I want to show everywhere except homepage is:
<h3 class="mast">Lo último</h3>
<div id="side_categories2">
<ul class="cat">
<?php $the_query = new WP_Query('showposts=6&offset=3&orderby=post_date&order=desc'); while ($the_query->have_posts()) : $the_query->the_post(); $do_not_duplicate = $post->ID; ?>
<li><a href="<?php the_permalink(); ?>" rel="bookmark" title="enlace permanente a <?php the_title(); ?>"><?php the_title(); ?>,<br /><font color="#666"><?php the_time('j F'); ?></font></a></li>
<?php endwhile; ?>
</ul></div>
How can I do that?
My blog is http://janes.es
THANKS A LOT!