Word Pressのコメント欄を表示させる
single.phpに
1 | <?php comments_template(); ?> |
comment.phpに
1 2 3 4 5 6 7 8 9 10 | <?php if( comments_open() ){ ?> <div id="comments"> <?php if( have_comments() ){ ?> <ol id="comments-list"> <?php wp_list_comments(); ?> </ol> <?php } ?> <?php comment_form(); ?> </div> <?php } ?> |
でCSSを適当に
1 2 3 4 | #comments{ max-width : 700px ; margin : 20px auto ; } |