WordPress コメントをどうぞの位置を記事の下に移動する

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

wordpress_logo

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タグの前に移動します。

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

CAPTCHA


このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください