Title: Move &#8220;comments&#8221; link
Last modified: August 19, 2016

---

# Move “comments” link

 *  Resolved [jmdougla](https://wordpress.org/support/users/jmdougla/)
 * (@jmdougla)
 * [16 years, 1 month ago](https://wordpress.org/support/topic/move-comments-link/)
 * On my blog the “comments” tag is shown at the very top of the post. I would like
   to see it at the bottom of the post instead. Is there an easy way to move it.
   My template is Dark Side 1.0.3.
 * See it here: [http://jmdouglass.com](http://jmdouglass.com)
 * Thanks

Viewing 4 replies - 1 through 4 (of 4 total)

 *  [Samuel B](https://wordpress.org/support/users/samboll/)
 * (@samboll)
 * [16 years, 1 month ago](https://wordpress.org/support/topic/move-comments-link/#post-1405289)
 * you will need to edit theme’s `index.php` and `single.php` and move the code 
   for the comment link to below `the_content()`
 *  Thread Starter [jmdougla](https://wordpress.org/support/users/jmdougla/)
 * (@jmdougla)
 * [16 years, 1 month ago](https://wordpress.org/support/topic/move-comments-link/#post-1405364)
 * Here are the 2 files. Maybe you could be a little more specific. I’m kind of 
   green when it comes to programming.
 * [code removed]
    Thanks
 *  [Samuel B](https://wordpress.org/support/users/samboll/)
 * (@samboll)
 * [16 years, 1 month ago](https://wordpress.org/support/topic/move-comments-link/#post-1405410)
 * ok I lied – you don’t need to mess with `single.php`
 * look in `index.php` for this line
 * `<?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?>`
    remove
   that and look for
 *     ```
       <div class="post-body">
       <?php the_content('Read the rest of this entry »'); ?>
       </div>
       ```
   
 * place it like so
 *     ```
       <div class="post-body">
       <?php the_content('Read the rest of this entry »'); ?>
       <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?>
       </div>
       ```
   
 * do back up the file 1st
 *  Thread Starter [jmdougla](https://wordpress.org/support/users/jmdougla/)
 * (@jmdougla)
 * [16 years, 1 month ago](https://wordpress.org/support/topic/move-comments-link/#post-1405568)
 * Thanks worked perfectly.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Move “comments” link’ is closed to new replies.

 * 4 replies
 * 2 participants
 * Last reply from: [jmdougla](https://wordpress.org/support/users/jmdougla/)
 * Last activity: [16 years, 1 month ago](https://wordpress.org/support/topic/move-comments-link/#post-1405568)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
