Which place of Atahualpa Theme I should use this code to hiding one or more categories in recent post list.
Code:
<ul> <?php $recentPosts = new WP_Query(); $recentPosts->query('showposts=5&cat=-XX,-YY,-ZZ'); ?> <?php while ($recentPosts->have_posts()) : $recentPosts->the_post(); ?> <li><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></li> <?php endwhile; ?> </ul>