Ok so I managed to get the posts working, but the next issue I’m having is to do with the custom categories.
At first I thought my code was wrong, but now that I look further … the excerpt which says which category the custom post is in shows the category as blank. Also, my Analytics Module can’t pick up the category for the custom post types. In fact, nothing can pick up the category except for the default nav menu which when you click the custom post type’s category, works fine.
Any idea why this could be happening?
Thanks Doc4, your query_post code worked … needed to change it slightly though, but here is the version that worked:
<?php query_posts(array(‘cat’=>array(64),’showposts’=>4,’post__not_in’ => array(121))); ?>
@wej00, thanks but I needed the array, because I am actually using a variable in place of the 121 which checks for previous posts on the page to prevent duplicates.