在loop-entry.php 有
<h2><a href="<?php the_permalink(\' \') ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
将上述代码更改为
<h2><a href="<?php echo get_permalink( $post->ID ); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
完成!