Want to know what WordPress Theme a site is using? Check Out Now!

How to Add 3 Dots to the End of the Post Excerpt in WordPress?

Do you want to add 3 dots to the end of the post excerpt in WordPress?

Adding dots when the character limit of your excerpt is reached is one of the common tactics bloggers and website owners do.

You can easily add dots to the post excerpt in WordPress using the below code snippet.

/**
 * Add 3 Dots to the End of The Post Excerpt in WordPress
 */
function maverick_excerpt_more_text($more) {
    return '...';
}
add_filter('excerpt_more', 'maverick_excerpt_more_text');

Leave a Reply

Your email address will not be published. Required fields are marked *