bug report

コメントリンクの動作が正常に動作しないバグがありましたので、

修正方法を説明します

comments.phpを開いてください

htmlコードは以下のようになっています

<?php
 /**
 * Comments template file for WordPress theme Enough
 *
 *
 * License: GNU General Public License v2.0
 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
 * @package Enough
 */
?>
<ul class="wp-list-comments"><?php wp_list_comments(); ?></ul>
<br class="clear vspacer-3" />
<div class="pagenate-comment-links">
<?php paginate_comments_links();?>
</div>
<?php comment_form();?>

以下のように、div要素を追加してください

<?php
 /**
 * Comments template file for WordPress theme Enough
 *
 *
 * License: GNU General Public License v2.0
 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
 * @package Enough
 */
?>
<div id="comments">
<ul class="wp-list-comments"><?php wp_list_comments(); ?></ul>
<br class="clear vspacer-3" />
<div class="pagenate-comment-links">
<?php paginate_comments_links();?>
</div>
<?php comment_form();?>
</div>

このバグは、次回 ver 0.23 で修正予定です