All WordPress snippets
WordPress

Customize the Excerpt “More” Text

Replaces the default ‘[...]’ that WordPress appends to trimmed excerpts with your own text.

php
/**
 * Change More excerpt
 */
function custom_more_excerpt( $more ) {
    return '...';
}

add_filter( 'excerpt_more', 'custom_more_excerpt' );
Want your own copy? Fork this repo and build your own snippet collection. Fork on GitHub →