NEW-ENTRIES

NEW-GALLERY-ENTRIES

Top-MTEntries-lastn1

●wordpressのデフォルトテーマ 
 twenty ten の本文中(the_content)の「続きを読む」の変更方法


loop.phpをdreameweaverで開き

<?php else : ?>
    <div class="entry-content">
    <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
    <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
    </div><!-- .entry-content -->
<?php endif; ?>

137段目の'Continue reading'を任意の言葉に変更する。


●wordpressのデフォルトテーマ
 twenty ten の抜粋(the_excerpt)の「続きを読む」の変更方法


function.phpをdreameweaverで開き

return ' <a href="'. get_permalink() . '">' . __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) . '</a>';

299段目の'Continue reading'を任意の言葉に変更する。