I am trying to stop latest blog items from displaying in the blog section of my site. I have used the following code:
<?php if ( is_page('blog') ) { ?>
<h2>Don't display anything</h2>
<?php } /* for all other pages */
else { ?>
<h2>Display blog</h2>
<?php } ?>
However, whenever I am on the blog page it displays "Display Blog", completely ignoring the if statement.
Is there something I'm missing from getting this working?

is_page(XX)with your blog's page ID instead of slug? – Geert Jan 20 '12 at 12:59is_page('14'),is_page(14), the title and the slug. Nothing works. – mickburkejnr Jan 20 '12 at 13:05global $post; var_dump($post);. – Geert Jan 20 '12 at 13:20