Wordpress LOOP [Only title and data]

admin

Administrator
Staff member
i have a wordpress and i want to use a php LOOP to cicle through my posts so i can get all my posts, the problem is that i only want the title of the post, the content of it and the date...

Code:
<?php 
     while ( have_posts() ) : the_post(); 
         get_template_part( 'content', get_post_format() ); 
         echo "<br/><br/>";
     endwhile; 
?>

This is a generic code for looping i tryed searching over the
Code:
get_post_format()
function so i can only get what i need but no sucess can anyone help out?