remove posted by
-
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
-
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.
The theme is furry friends.
If I find it in index what do I do?
Cheers JohnThere should be text that says ‘by <?php the_author(); ?>’, just remove that and it should be gone.
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)’, ‘ CommentPlease post the section before that.
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>Thanks everyone Ok Now
The topic ‘remove posted by’ is closed to new replies.