How I can remove “Read more” in post.
Add this to your child theme functions.php:
function x_child_theme_setup() {
remove_filter( ‘excerpt_more’, ‘x_excerpt_string’ );
}
This method did not help me
Hello There,
Thanks for writing in!
Please add following CSS to remove read more link:
a.more-link {
display: none;
}
Thanks.
1 Like
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.