I am running a custom query for my recent posts, code can bee seen at:
http://pastebin.com/CFZdP3c9
This code is just for my recent posts, not the actual page content.
My problem is that it shows my current page post item and I cannot figure out how to pass over it.
originally I tried
global $post;
$currentPost = $post->ID;
if( $post->ID != $currentPost ) ?>
(the loop)
endif;
but could not seem to get it to work correctly, it just didn't output anything.
Any insights are greatly appreciated!