How to rename 'Continue Reading' link in Twenty Fifteen?
-
I’m trying to figure out how to rename the ‘Continue Reading’ link in the Twenty Fifteen theme. The only thing I’ve tried is writing this in my ‘functions.php’ file:
function twenty_fifteen_excerpt_more( $more ) {
return ‘ ‘ . __(‘Read More’, ‘your-text-domain’) . ‘‘;
}
add_filter( ‘excerpt_more’, ‘twenty_fifteen_excerpt_more’ );This hasn’t worked however?
Thoughts?
- The topic ‘How to rename 'Continue Reading' link in Twenty Fifteen?’ is closed to new replies.