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