I have read a lot of articles about this, but have only really found out how to remove the post titles on pages....but I want to remove the PAGE titles and created dates on all pages, but not affect the post titles at all. If you know how to do this, please advise.
page.php
<?php include("header.php"); ?>
<!-- BEGIN content -->
<div id="content">
<?php
if (have_posts()) : the_post();
?>
<?php else : ?>
<div class="notfound">
<h2>Not Found</h2>
<p>Sorry, but you are looking for something that is not here.</p>
</div>
<?php endif; ?>
</div>
<!-- END content -->
<?php get_sidebar(); get_footer(); ?>
index.php
<?php include("header.php"); ?>
<!-- BEGIN content -->
<div id="content">
<?php
if (have_posts()) :
while (have_posts()) : the_post();
?>
<!-- BEGIN post -->
<div class="post">
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<a href="<?php the_permalink(); ?>"><?php dp_attachment_image($post->ID, 'thumbnail', 'alt="' . $post->post_title . '"'); ?></a>
<?php the_excerpt(); ?>
<p class="date"><?php the_time('F j, Y') ?></p>
</div>
<!-- END post -->
<?php endwhile; ?>
<?php else : ?>
<div class="notfound">
<h2>Not Found</h2>
<p>Sorry, but you are looking for something that is not here.</p>
</div>
<?php endif; ?>
</div>
<!-- END content -->
<?php get_sidebar(); get_footer(); ?>