Twenty Twenty edit “Read more” text
-
I am using WordPress Twenty Twenty theme. So I am trying to change the “Read more” text after each blog and this is the function i am trying to do it with.
`function modify_read_more_link() {
return ‘<a class=”more-link” href=”‘ . get_permalink() . ‘”>Your Read More Link Text</a>’;
}
add_filter( ‘the_content_more_link’, ‘modify_read_more_link’ );`But the text isn’t changing.
Could there be problems with certain plugins?
A person has said that the code should work.
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Twenty Twenty edit “Read more” text’ is closed to new replies.