Home › Support Forums › Theme Support › Esplanade › Read More NOT showing in ALL entry summaries › Reply To: Read More NOT showing in ALL entry summaries
noaneo
Participant
hi,
add_filter( 'the_excerpt', 'esplanade_excerpt_read_more', 999 );
function esplanade_excerpt_read_more( $excerpt ) {
$excerpt .= sprintf( '<a href="%s">Read More →</a>', get_permalink() );
return $excerpt;
}
or
add_filter( 'the_excerpt', 'esplanade_excerpt_read_more', 70 );
function esplanade_excerpt_read_more( $excerpt ) {
$excerpt .= sprintf( '<a href="%s">Read More →</a>', get_permalink() );
return $excerpt;
}
same, no change
thank you