他改寫在index.php之中,找一下裡面與法應該是有以下這串:
<?php if (is_archive() || is_search()) : ?>
<?php the_excerpt(); _e('<p><a href="'.get_permalink().'">Continue reading about '); the_title(); _e('</a></p>'); ?>
<?php else : ?>
<?php the_content('Read the rest of this entry »'); ?>
<?php the_tags( '<p>Tags: ', ', ', '</p>'); ?>
<?php endif; ?>
把藍色改成:
<?php the_content('繼續閱讀'); ?>
應該就可以了~ |