• Resolved cattykool

    (@cattykool)


    In my home static page – I do not really need ( or want) to have the :
    “Posted by Dave under Uncategorized on March 17th, 2008.”

    I guess that in order to get rid of this I need to edit the php – can anyone suggest which file I need to edit and where ?

    Thank you for any suggestions

Viewing 2 replies - 1 through 2 (of 2 total)
  • look at the index and single php in your template file

    somewhere around here
    `<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    <div class=”post” id=”post-<?php the_ID(); ?>”>
    <h2>
    <?php the_title(); ?>
    </h2>`

    you will see something like this

    <small><?php the_time(__('M jS, Y')); ?> | <?php _e('By');?> <?php the_author_posts_link('namefl'); ?> | <?php _e('Category:');?>

    remove or comment out

    always backup first!

    Thread Starter cattykool

    (@cattykool)

    Thanks for your help

    Excellent – you know your beans ??

    I found the code in “pages.php” because my home page is a static page ( i.e. a Page )

    Thanks again.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How do I gett rid of the “Postedby…”’ is closed to new replies.