Support » Themes and Templates » How do I move categories and tags box in post to below the content?

  • I have searched all over looking for help with this.
    I am trying to move the categories and tags that appear at the top of the post to underneath the content in the post.
    I tried moving things in the single.php file, but it didn’t change anything. I am new to modifying this wordpress template. My url is http://dallasvietty.com
    I use woothemes premium news. And an example post would be this one. With a photo of the spot I am trying to change here.

    Thanks!!!!

Viewing 3 replies - 1 through 3 (of 3 total)
  • <div id="archivebox">
    <h2><em><?php the_category(', ') ?></em></h2>
    <div class="singletags"><?php the_tags( '<p>Tags | ', ', ', '</p>'); ?></div></div>

    move thie code underneath the content

    Thread Starter robotaccordion

    (@robotaccordion)

    Thanks Cinmoy!
    I put the code here

    <?php the_content('<span class="continue">'.__('Continue Reading',woothemes).'</span>'); ?> 
    
    <div id="archivebox">
    
    						<h2><em><?php _e('Categorized',woothemes); ?> |</em> <?php the_category(', ') ?></h2>
    						<?php if (function_exists('the_tags')) { ?><div class="singletags"><?php the_tags('Tags | ', ', ', ''); ?></div><?php } ?>
    					</div>  
    
    				</div><!--/post-->

    And it moved the box with the tags and categories, but it also pushed the sidebar from the side to the bottom of the page.

    Do you have any more advice on this? Thanks again!!!

    <div class=”col1″><!– move all the post content code and comment content in side this div–></div>

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How do I move categories and tags box in post to below the content?’ is closed to new replies.