Custom "Read More" Excerpt Link
Replaces the default […] excerpt suffix with a styled "Read more →" link to the full post.
PHPby SnipCraft
php
<?php
add_filter( 'excerpt_more', 'scseed_custom_excerpt_more' );
function scseed_custom_excerpt_more( $more ) {
return ' <a class="read-more" href="' . esc_url( get_permalink() ) . '">'
. esc_html__( 'Read more →', 'textdomain' )
. '</a>';
}#content#excerpts#frontend#theme#ux