• Hello every time I put a post in my blog at the top of the post it says Posted september 26th 2010 by john.
    Is there a way of removing this please as I would like it to look like a web page.

    Thank you John

Viewing 8 replies - 1 through 8 (of 8 total)
  • Hi John,

    It depends what theme you are using but there would be a tag in index.php/single.php/page.php (some or all of those) that displays that. Look for something like the_author() or something that has ‘author’ in it.

    Thread Starter johnhenworth

    (@johnhenworth)

    The theme is furry friends.
    If I find it in index what do I do?
    Cheers John

    There should be text that says ‘by <?php the_author(); ?>’, just remove that and it should be gone.

    Thread Starter johnhenworth

    (@johnhenworth)

    I have foud This in templates the_author() ?></div>
    </div>
    <div class=”storycontent”>
    <?php the_content(‘Read more »’); ?>
    </div>
    <div class=”metadata”>
    <div class=”category”>
    Tagged and categorized as: <?php if (the_category(‘, ‘)) the_category(); ?>
    <?php if ( function_exists(‘wp_tag_cloud’) ) : ?>
    <?php the_tags(‘, ‘, ‘, ‘, ”); ?>
    <?php endif; ?>
    <? if(!is_single()) echo “|”; ?>
    <?php edit_post_link(‘Edit’, ”, ‘ | ‘); ?>
    <?php comments_popup_link(‘Comment (0)’, ‘ Comment

    Please post the section before that.

    Thread Starter johnhenworth

    (@johnhenworth)

    This is all of it.

    <?php get_header(); ?>
    <div id=”content”>
    <div id=”main”>

    <?php if (have_posts()) : ?>

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

    <?php /*?>item<?php */?>
    <div class=”item entry” id=”post-<?php the_ID(); ?>”>
    <div class=”itemhead”>
    <h3>” rel=”bookmark”><?php the_title(); ?></h3>
    <div class=”chronodata”>Posted <?php the_time(‘F jS, Y’) ?> by <?php the_author() ?></div>
    </div>
    <div class=”storycontent”>
    <?php the_content(‘Read more »’); ?>
    </div>
    <div class=”metadata”>
    <div class=”category”>
    Tagged and categorized as: <?php if (the_category(‘, ‘)) the_category(); ?>
    <?php if ( function_exists(‘wp_tag_cloud’) ) : ?>
    <?php the_tags(‘, ‘, ‘, ‘, ”); ?>
    <?php endif; ?>
    <? if(!is_single()) echo “|”; ?>
    <?php edit_post_link(‘Edit’, ”, ‘ | ‘); ?>
    <?php comments_popup_link(‘Comment (0)’, ‘ Comment (1)’, ‘Comments (%)’); ?>
    <?php if( pings_open() ) : ?>
    | ” rel=”trackback” title=”Uniform Resource Identifier”>TrackBack
    URI
    <?php endif; ?>
    </div>
    </div>
    </div>
    <?php /*?>end item<?php */?>

    <?php comments_template(); // Get wp-comments.php template ?>

    <?php endwhile; ?>

    <div class=”navigation”>
    <div class=”alignleft”><?php next_posts_link(‘« Previous Entries’) ?></div>
    <div class=”alignright”><?php previous_posts_link(‘Next 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>

    <div id=”sidebar”>
    <?php get_sidebar(); ?>
    </div>

    <div style=”clear:both; height:1px;”></div>
    <?php get_footer(); ?>

    remove this <div class="chronodata">Posted <?php the_time('F jS, Y') ?> by <?php the_author() ?></div>

    Thread Starter johnhenworth

    (@johnhenworth)

    Thanks everyone Ok Now

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘remove posted by’ is closed to new replies.