主要是位置不好找
the_content()位于wp-includes/post-template.php中
在322行有这么一段
$output .= apply_filters( 'the_content_more_link', ' <a href="' . get_permalink() . "#more-{$post->ID}\" class=\"more-link\">$more_link_text</a>", $more_link_text );
在<a>外面套一个<p>标签,设置text-align属性就行
$output .= apply_filters( 'the_content_more_link', ' <p style="text-align: center;margin: 0"><a href="' . get_permalink() . "#more-{$post->ID}\" class=\"more-link\">$more_link_text</a></p>", $more_link_text );
至于按钮样式,可以直接在css里添加
.more-link{
…..
}