eu estou usando o tema “communist” e tambem queria retirar nome e data dos posts, na page.php tem isso…
<?php get_header(); ?>
<?php get_sidebar(); ?>
<div id="content"><a name="content"></a>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="title">
<div class="date"><span> <?php the_time('M-j-Y'); ?></span> </div>
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<div class="met"><span>Posted by <?php the_author(); ?> under <?php the_category(', '); ?></span></div>
</div>
<div class="cover">
<div class="entry">
<?php the_content('Read the rest of this entry »'); ?>
<div class="tags"><?php if (function_exists('the_tags')) { ?><strong>Tags: </strong><?php the_tags('', ', ', ''); ?><br /><?php } ?></div>
</div>
</div>
<div class="postmetadata">
<div class="com"><?php comments_popup_link('ADD COMMENTS', '1 COMMENT', '% COMMENTS'); ?></div>
</div>
</div>
<?php comments_template(); ?>
<?php endwhile; endif; ?>
</div>
<?php get_footer(); ?>