Reply To: Remove three dots (…) from masonry

Home Forums Support Remove three dots (…) from masonry Reply To: Remove three dots (…) from masonry

Home Forums Support Remove three dots (…) from masonry Reply To: Remove three dots (…) from masonry

#91437
Tom
Lead Developer
Lead Developer

Give this a shot:

if ( ! function_exists( 'generate_custom_excerpt_more' ) ) :
	/**
	 * Prints the read more HTML
	 */
	add_filter( 'excerpt_more', 'generate_custom_excerpt_more', 100 );
	function generate_custom_excerpt_more( $more ) {
		$generate_settings = wp_parse_args( 
			get_option( 'generate_blog_settings', array() ), 
			generate_blog_get_defaults() 
		);
		return ' <a class="read-more" href="'. get_permalink( get_the_ID() ) . '">' . $generate_settings['read_more'] . '</a>';
	}
endif;