Hi shuyinz. Welcome to the Hueman forum. You can modify the default “read more” text by copying a theme function to your child theme functions.php file. If you’re not currently using a child theme you can add one fairly easily. See the documentation here:
https://docs.presscustomizr.com/article/239-using-a-child-theme-with-hueman
Then add this function to your child theme functions.php file:
/* change excerpt read more text */
function hu_excerpt_more( $more ) {
$readmoretext = '...Read more -->';
return '<a href="'. get_permalink( get_the_ID() ) . '">' . $readmoretext . '</a>';
}
You could then add some custom CSS to your child theme styles.css file to style the “Read More” like a button:
/* style read more link as button */
.read-more {
border: 1px solid #666;
border-radius: 10px;
background: #ccc;
padding: 5px;
margin: 5px;
}