参考地址

修改loop.php 查找第二处"continue reading",该行改为

<?php the_content("......点此阅读<span class=\"widget-title\">t " . get_the_title('', '', false) . "</span> 全文......"); >

function.php底部加入脚本,用于跳转到文章开头.

function remove_more_jump_link($link) { 
    $offset = strpos($link, '#more-');
    if ($offset) {
        $end = strpos($link, '"',$offset);
    }
    if ($end) {
        $link = substr_replace($link, '', $offset, $end-$offset);
    }
    return $link;
}
add_filter('the_content_more_link', 'remove_more_jump_link');