Hi Guido,
When I go to the page.php in the WordPress editor the code your talking about is not there. I would like to get rid of the dates and comments on pages and posts. How can I do this? Thank you so much for the help.
My page.php file:
<?php get_header(); ?>
<!– begin #main –>
<div id=”main”>
<h2><?php the_title();?></h2>
<?php if (have_posts()) : while (have_posts()) : the_post();
the_content();
endwhile; ?>
<?php else : ?>
<p><?php _e(“Sorry, but you are looking for something that isn’t here.”,”site5framework”)?></p>
<?php endif; ?>
</div>
<!– end #main –>
<?php get_sidebar(); ?>
<?php get_footer(); ?>