- This topic has 1 reply, 2 voices, and was last updated 5 years, 9 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Support › Forums › Flex Theme › How to Remove Elipses from Content Excerpt
The Genesis – Featured Page widget is showing ellipses (…) after the excerpt. I’m trying to remove those ellipses without removing the button below it.
Try this code
add_filter( 'excerpt_more', 'flex_remove_ellipses' );
function flex_remove_ellipses( $more ) {
return;
}