• I know this has been covered many times, but I still can’t find the solution. My posts at http://www.roswellcentennial.org are still showing the author and time posted. I have edited the index.php and single.php as well as page.php and removed the lines for that, but it continues to appear – only on the posts, not on the pages.

    Here is my single.php

    <?php get_header();?>
    
    <div id="content">
    	<?php if(have_posts()):?>
    	<?php while(have_posts()):the_post();?>
    	<div class="post">
    		<h2><a href="<?php the_permalink();?>" title="<?php the_title();?>"><?php the_title();?></a></h2>
    
    		<div class="entry-content">
    			<?php the_content()?>
    			<?php wp_link_pages();?>
    			<div class="editlink"><?php edit_post_link('Edit','<p>','</p>');?></div>
    
    	</div>
        <?php endwhile;?>
        <?php endif;?>
        </div>
    
        <div class="pagecomments">
        	<?php comments_template();?>
        </div>
        </div>
        <div class="navigation"></div>
    <?php get_sidebar();?>
    
    <?php get_footer();?>

Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Remove author and time’ is closed to new replies.