Support » Themes and Templates » How to move “Posted By Admin” to bottom of post ?

  • Resolved neil8

    (@neil8)


    Hi,

    I am using the Big city theme and this part

    ” Posted by admin on November 11, 2009
    Car Insurance / No Comments ”

    shows up right under the title of my posts. I want to move it to the bottom of each post. Could you please advise me on how it can be done ?

    Regards,
    Neil

Viewing 4 replies - 1 through 4 (of 4 total)
  • Its in index.php (or page.php & single.php possibly, if you also want it changed on pages and single post view) I can’t give you the exacts on how to do it without seeing your code, but you’ll see something like

    posted by <?php the_author(); ?> on <?php the_time('F j, Y'); ?>
    <?php the_category(', '); ?> / <?php comments_popup_link('ADD COMMENTS', '1 COMMENT', '% COMMENTS'); ?>

    on your theme it’ll probably be under a line that looks something like this

    <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a>

    MOve it from there to somewhere under a line that may look something like this:
    <?php the_content('Read the rest of this entry &raquo;'); ?>

    Of course, your markup is going to look different than mine, these are generic references. FIRST-make a backup copy of your theme in case you screw anything up, so you can restore the original theme.

    The stuff I posted here should give you a general idea….look for the keywords…. the_title, the_content, the_author, etc….

    Thread Starter neil8

    (@neil8)

    Thanks,RVoodo! Did just that and now they ( author,date,comment) are showing at the end of the post, but I have another question.

    When I click on categories on the sidebar , it is showing the posts with the date,author and comments still under the title just above the posts. How can I change that please ?

    check out that other thread you have going…..I tried to help a bit there

    http://wordpress.org/support/topic/333472?replies=5

    Thread Starter neil8

    (@neil8)

    Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to move “Posted By Admin” to bottom of post ?’ is closed to new replies.