I have a Wordpress site and I'm using the basic loop to bring in each Wordpress post
html
<?php
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
//
// Post Content here
//
} // end while
} // end if
?>
However I only want to bring in the title of each post as a link to that post (on its own single.php page) instead of all the content/images, etc. I have only been able to get all or nothing results.