ここではWordPressでコメントをどうぞの位置を記事の下に移動する方法を解説していきます。

content.phpの編集
<?php if ( comments_open() ) : ?>
<div class="comments-link">
<?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'twentytwelve' ) . '</span>', __( '1 Reply', 'twentytwelve' ), __( '% Replies', 'twentytwelve' ) ); ?>
</div><!-- .comments-link -->
<?php endif; // comments_open() ?>
このブロックが/headerの前にあるので、これをfooterタグの前に移動します。
