Snippets

Rik Kendell Custom Excerpts

Created by Rik Kendell
// 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');

Comments (0)

HTTPS SSH

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