How to remove post date?

Discussion in 'Blogging' started by robibrk, Jun 25, 2008.

  1. #1
    I dont want any post date info on my blog. Where or how to remove post date info?
     
    robibrk, Jun 25, 2008 IP
  2. pipes

    pipes Prominent Member

    Messages:
    12,766
    Likes Received:
    958
    Best Answers:
    0
    Trophy Points:
    360
    #2
    Within index.php in the postmetadata part looking something like this:

    <p class="postmetadata">

    <?php _e('Filed under&#58;'); ?> <?php the_category(', ') ?> <?php _e('by'); ?> <?php the_author(); ?><br />

    <?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?> <?php edit_post_link('Edit', ' &#124; ', ''); ?> Published <?php the_date('F j, Y'); ?>

    </p>

    You need to look for something like that in bold.

    You may need to remove this from other files that are using most of the code from index.php too.
     
    pipes, Jun 25, 2008 IP
  3. robibrk

    robibrk Well-Known Member

    Messages:
    1,115
    Likes Received:
    18
    Best Answers:
    0
    Trophy Points:
    130
    #3
    Thanks, i have removed ; ?> Published <?php the_date('F j, Y') and is fine working.
     
    robibrk, Jun 25, 2008 IP
  4. allout

    allout Prominent Member

    Messages:
    5,000
    Likes Received:
    461
    Best Answers:
    2
    Trophy Points:
    340
    #4
    If you are using Word Press, you can do the same thing under settings and Permalink. Just beware taht if you change that, either the way you did or through settings, any old posts will change the URL: and any that are already indexed will have to be reindexed.
     
    allout, Jun 25, 2008 IP
  5. deluxdon

    deluxdon Catch Me If You Can...!!!™ Staff

    Messages:
    25,481
    Likes Received:
    1,943
    Best Answers:
    32
    Trophy Points:
    480
    #5
    BTW you need to remove same thing from single.php also otherwise post date info appear there for single page view.

    DON.
     
    deluxdon, Jun 25, 2008 IP
  6. pipes

    pipes Prominent Member

    Messages:
    12,766
    Likes Received:
    958
    Best Answers:
    0
    Trophy Points:
    360
    #6
    Also for page.php and archives.php
     
    pipes, Jun 25, 2008 IP