In The Media

//Setting up the new loop of posts
global $post;
//Getting Posts - More on this below
$gettingposts = get_posts('category=6');
//Starting the loop
foreach($gettingposts as $post) :
setup_postdata($post);
//Below is a custome output of a link setup
?>

//Display the post
the_content();
?>


//End the loop
endforeach;
?>