• celebritywax

    (@celebritywax)


    “Posted: March 6th, 2010 | Author: admin | Filed under: Uncategorized | Modify: Edit This | No Comments ?\”

    i want to remove all of the above from any blog hosts. can anyone please assist, im using the clean-home theme?

    thank you for your assistance.

Viewing 3 replies - 1 through 3 (of 3 total)
  • pyriel127

    (@pyriel127)

    In the index.php file you can find the code that call these functions. You just need to delete them from there and they wont show up.

    In my site it looks like this:

    <div class=”end_title”>Filed Under (<?php the_category(‘, ‘) ?>) by <?php the_author() ?></div>

    Thread Starter celebritywax

    (@celebritywax)

    hi there, this is my index page. which bits do i need to take out?

    <?php get_header(); ?>

    <div id=”content”>
    <?php if (have_posts()) : ?>

    <?php while (have_posts()) : the_post(); ?>

    <div class=”post”>
    <h1>“><?php the_title(); ?></h1>
    <small><b>Posted:</b> <?php the_time(‘F jS, Y’) ?> | <b>Author:</b> <?php the_author_posts_link(); ?> | <b>Filed under:</b> <?php the_category(‘, ‘) ?> <?php the_tags(‘ | <b>Tags:</b> ‘, ‘, ‘, ”); ?> <?php if ( $user_ID ) :
    ?> | <b>Modify:</b> <?php edit_post_link(); ?> <?php endif; ?>| <?php comments_popup_link(‘No Comments »’, ‘1 Comment »’, ‘% Comments »’); ?></small>
    <?php the_content(‘Read the rest of this entry »’); ?>
    <hr/>
    </div>

    <?php comments_template(); ?>

    <?php endwhile; ?>

    <div class=”navigation”>
    <div class=”alignleft”><?php next_posts_link(‘« Older Entries’) ?></div>
    <div class=”alignright”><?php previous_posts_link(‘Newer Entries »’) ?></div>
    </div>

    <?php else : ?>

    <h2 class=”center”>Not Found</h2>
    <p class=”center”>Sorry, but you are looking for something that isn’t here.</p>

    <?php endif; ?>

    </div>

    <?php get_sidebar(); ?>

    <?php get_footer(); ?>

    pyriel127

    (@pyriel127)

    <div class=”post”>
    <h1>”><?php the_title(); ?></h1>
    <small><b>Posted:</b> <?php the_time(‘F jS, Y’) ?> | <b>Author:</b> <?php the_author_posts_link(); ?> | <b>Filed under:</b> <?php the_category(‘, ‘) ?> <?php the_tags(‘ | <b>Tags:</b> ‘, ‘, ‘, ”); ?> <?php if ( $user_ID ) :
    ?> | <b>Modify:</b> <?php edit_post_link(); ?> <?php endif; ?>| <?php comments_popup_link(‘No Comments ?’, ‘1 Comment ?’, ‘% Comments ?’); ?></small>
    <?php the_content(‘Read the rest of this entry ?’); ?>
    <hr/>
    </div>

    This div has a few different things to look at, if you want to take out filed under then remove: <b>Filed under:</b> <?php the_category(‘, ‘) ?>

    etc…

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘how do i remove time/date from blog posts – clean home theme’ is closed to new replies.