Remove dot suffix from the excerpt

wordpress
function trim_excerpt($text)
{
	return rtrim($text,'[...]');
}
add_filter('get_the_excerpt', 'trim_excerpt');

One Response to “Remove dot suffix from the excerpt”

  1. Note: Add this to “functions.php”

Discuss the Code