Um filtro usando the_content_more_link para modificar a classe CSS de links “leia mais”:
function dkc_change morelink_class( $link, $text ) { return str_replace( 'more-link' //remove more-link ,'leiamais' //susbtitui por leiama ,$link ); } add_action( 'the_content_more_link', 'dkc_change morelink_class', 10, 2 );