I tried also:
function no_more_jumping($post) {
return ‘ID).'” class=”read-more”>’.’Continue Reading’.’‘;
}
add_filter(‘excerpt_more’, ‘no_more_jumping’);
add_filter(‘the_content_more_link’, ‘remove_more_jump_link’);
Always in my functions.php child file, and it didn’t work!
I’m working with a child theme of BizPro. I wold like to romove the Read More button.
I tried to create a functions.php file on the child theme and to put:
function wdc_no_more_jumping($post) {
return ‘ID).'” class=”read-more”>’.’Continue Reading’.’‘;
}
add_filter(‘excerpt_more’, ‘wdc_no_more_jumping’);
but it dind`t work.
I also tried the suggestion of Jan, but still no working.
Any other suggestion in order to remove read more button?
Thanks