Title: Move comments link
Last modified: August 24, 2016

---

# Move comments link

 *  Resolved [Jacquelyn Williams](https://wordpress.org/support/users/jacquelyn-williams/)
 * (@jacquelyn-williams)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/move-comments-link-1/)
 * My comments link is near the post title, but I’d prefer it was at the bottom 
   of the post, after the reader has gone through the article.
 * [http://www.stamphappy.co.nz](http://www.stamphappy.co.nz)
 * How can I move this? I’m not versed in computer code and need step by step, please.
   thanks
    Jacque

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

 *  Theme Author [TT Themes](https://wordpress.org/support/users/tomastoman/)
 * (@tomastoman)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/move-comments-link-1/#post-6046081)
 * Dear Jacque,
 * to move the post meta data (author’s name, publish date and comments number) 
   at the bottom on your blog entries, you will need to edit the “content-archives-
   standard.php” theme file. You can edit it via the panel “Appearance > Editor”
   in your WordPress administration, but more convenient would be to create a [child theme](https://codex.wordpress.org/Child_Themes).
 * Please search for the following code in “content-archives-standard.php”:
 *     ```
       <?php if ( $songwriter_display_meta_post_entry != 'Hide' ) { ?>
               <p class="post-meta">
                 <span class="post-info-author"><i class="icon_pencil-edit" aria-hidden="true"></i><?php the_author_posts_link(); ?></span>
                 <span class="post-info-date"><i class="icon_clock_alt" aria-hidden="true"></i><a href="<?php echo get_permalink(); ?>"><?php echo get_the_date(); ?></a></span>
       <?php if ( comments_open() ) : ?>
                 <span class="post-info-comments"><i class="icon_comment_alt" aria-hidden="true"></i><a href="<?php comments_link(); ?>"><?php printf( _n( '1 Comment', '%1$s Comments', get_comments_number(), 'songwriter' ), number_format_i18n( get_comments_number() ), get_the_title() ); ?></a></span>
       <?php endif; ?>
               </p>
       <?php } ?>
       ```
   
 * and move it just below this code:
 *     ```
       <?php global $more; $more = 0; ?><?php the_content(); ?>
       <?php } ?>
       ```
   
 * Best regards,
    Tomas Toman
 *  Theme Author [TT Themes](https://wordpress.org/support/users/tomastoman/)
 * (@tomastoman)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/move-comments-link-1/#post-6046088)
 * I just realized that there is another one (and probably much simpler) solution.
   If you insert the following custom CSS into “Theme Options > Other Settings >
   Custom CSS”, it should move the post meta data at the bottom of your blog entries:
 *     ```
       #wrapper .post-entry .post-meta {position: absolute; bottom: 13px;}
       #wrapper .post-entry .post-entry-content {padding-bottom: 20px;}
       ```
   
 * If you add this custom CSS, it will work also on your single posts, not only 
   on the post summaries on your blog page:
 *     ```
       .single .entry-content-inner .post-meta {position: absolute; bottom: 5px;}
       .single .nav-wrapper {margin-top: 15px;}
       ```
   
 * Best regards,
    Tomas Toman
 *  Thread Starter [Jacquelyn Williams](https://wordpress.org/support/users/jacquelyn-williams/)
 * (@jacquelyn-williams)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/move-comments-link-1/#post-6046201)
 * Thanks so much Tomas. I copied those two codes into the place specified. We’ll
   see how it goes! 🙂
 *  Thread Starter [Jacquelyn Williams](https://wordpress.org/support/users/jacquelyn-williams/)
 * (@jacquelyn-williams)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/move-comments-link-1/#post-6046202)
 * Yuuus! It worked. You’re brilliant – thank you so much.
 *  Theme Author [TT Themes](https://wordpress.org/support/users/tomastoman/)
 * (@tomastoman)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/move-comments-link-1/#post-6046205)
 * You are welcome!
 * Best regards,
    Tomas Toman

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

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

 * ![](https://i0.wp.com/themes.svn.wordpress.org/songwriter/2.0.5/screenshot.png)
 * SongWriter
 * [Support Threads](https://wordpress.org/support/theme/songwriter/)
 * [Active Topics](https://wordpress.org/support/theme/songwriter/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/songwriter/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/songwriter/reviews/)

 * 5 replies
 * 2 participants
 * Last reply from: [TT Themes](https://wordpress.org/support/users/tomastoman/)
 * Last activity: [11 years, 1 month ago](https://wordpress.org/support/topic/move-comments-link-1/#post-6046205)
 * Status: resolved