This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Custom Excerpt */ | |
// Remove default hellip | |
function carawebs_remove_hellip( $more ) { | |
$return = str_replace('[...]', '', $more); | |
return $return; | |
} | |
add_filter('excerpt_more', 'carawebs_remove_hellip'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Custom Excerpt */ | |
// Remove default hellip | |
function carawebs_remove_hellip( $more ) { | |
return ''; | |
} | |
add_filter('excerpt_more', 'carawebs_remove_hellip'); | |