Jump to content
Sign in to follow this  
greensky

Move date, category and author to bottom of post

Recommended Posts

greensky

Hi there! How can I move the date, category and author from the top of my blog post to the bottom? I'm having difficulty messing around with _pages.php and I don't want to screw anything else up. :) Thanks in advance.

Share this post


Link to post
Share on other sites
Andrew

Sure, what theme/version? You are probably going to have to move around some code in "_posts.php" whether you like it or not. A mockup of what you want to do might help :)

Share this post


Link to post
Share on other sites
greensky

Hi there! Thanks for the reply. I'm currently running the latest version of the free WhiteHouse theme. Here's my example: http://dmkthinks.org/blog/3-essential-electronic-devices/ On that post, notice how it says "On April 19, 2010, In Electronics, By David" right under the title "3 Essential Electronic Devices You Probably Don??™t Own"? Well, I'd prefer to move the date, author, etc. right below the last line "What are some of the electronic devices I left out? What are your favorite devices to use?" and right above the social media bookmarking icons. Thanks again!

Share this post


Link to post
Share on other sites
cmunns

Move this `

<?php _e('On', TDOMAIN);?> <?php the_time(get_option('date_format')); ?>, <?php _e('In',TDOMAIN);?> <?php the_category(', ', TDOMAIN) ?>, <?php _e('By', TDOMAIN);?> <?php the_author(); ?>
` below this `<?php the_content(); ?>` You will find this in your posts.php template file in the theme editor.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×