Reply To: Change masonry block size/content?

Home Forums Support Change masonry block size/content? Reply To: Change masonry block size/content?

Home Forums Support Change masonry block size/content? Reply To: Change masonry block size/content?

#91441
Tom
Lead Developer
Lead Developer

To remove the ellipses, you’ll need to add this function:

if ( ! function_exists( 'generate_remove_excerpt_more' ) ) :
	/**
	 * Removes the read more link
	 */
	add_filter( 'excerpt_more', 'generate_remove_excerpt_more', 100 );
	function generate_remove_excerpt_more( $more ) {
		return '';
	}
endif;

To add functions, you can use your child theme’s functions.php file, or a plugin like this: https://wordpress.org/plugins/code-snippets/