Reply To: Read More NOT showing in ALL entry summaries

#19055
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 &rarr;</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 &rarr;</a>', get_permalink() );
    return $excerpt;
}

same, no change

thank you