Snippets

Rik Kendell Custom Excerpts

Created by Rik Kendell

File functions.php Added

  • Ignore whitespace
  • Hide word diff
+// Change Excerpt length
+	function custom_excerpt_length( $length ) {
+		return 12;
+	}
+	add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
+
+// Replace the default ellipsis
+	function new_excerpt_more( $more ) {
+		return '…';
+	}
+	add_filter('excerpt_more', 'new_excerpt_more');
HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.