View Single Post
Old 06-25-2013, 04:01 AM  
nico-t
emperor of my world
 
Join Date: Aug 2004
Location: nethalands
Posts: 29,903
this works for me:

Code:
			<?php
			global $post;
			$myposts = get_posts('numberposts=6&category=3&orderby=rand');
			foreach($myposts as $post) :
			setup_postdata($post); ?>

					<?php
					global $more;
					$more = 0;
					?>

			<div class="postboxmain" id="post-<?php the_ID(); ?>">
			REST OF YOUR POST TEMPLATE HERE
			</div>

			<?php endforeach; 
			wp_reset_query(); 
			?>
nico-t is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote