Q.固定ページにコメント欄を設けたい
A.下記のphpファイルの該当箇所を編集します
編集するテーマファイル:page.phpなど
コメント欄を表示するための下記コードを
<?php if ($options['show_comment']) : if (function_exists('wp_list_comments')) { comments_template('', true); } else { comments_template(); }; endif; ?>
たとえば
の下などに挿入するといいでしょう。
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <h2 class="headline2"><?php the_title(); ?></h2> <div class="post clearfix"> <?php the_content(__('Read more', 'tcd-w')); ?> <?php custom_wp_link_pages(); ?> </div><!-- END .post -->