'.__('Read More', 'cpotheme').''; } //Displays an ellipsis on automatic excerpts add_filter('excerpt_more', 'cpotheme_auto_excerpt_more'); function cpotheme_auto_excerpt_more($more){ $output = '…'; return $output; } // Limits excerpt length to a certain size add_filter('excerpt_length', 'cpotheme_post_excerpt_length'); function cpotheme_post_excerpt_length($length){ return 80; }