How to Add a “Read More” link to the end of the excerpt?

Are you looking for a way to add a “Read More” link to the end of the excerpt in WordPress?

Many WordPress themes don’t come with a Read More link at the end of the excerpt, so you might have to do it explicitly.

The code below adds a ‘Read More’ permalink to the end of the_excerpt automatically in WordPress.

php
/**
 * Add Read More Permalink to the end of 'the_excerpt'
 */
function maverick_excerpt_readmore($more) {
    return '... <a href="'. get_permalink($post->ID) . '" class="readmore">' . 'Read More' . '</a>';
}
add_filter('excerpt_more', 'maverick_excerpt_readmore');

Leave a Reply

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