Site logo

Archived topic

read more button not showing

3 replies · Started by Marcos on June 5, 2019

Viewing posts 1–4 of 4

Even though I have the "Read more" label active, text or button are not showing.

Thank you

Leo, yes, I'm using excerpts on my posts.

Where do I supose to past that code?
add_filter( 'wp_trim_excerpt', 'tu_excerpt_metabox_more' );
function tu_excerpt_metabox_more( $excerpt ) {
$output = $excerpt;

if ( has_excerpt() ) {
$output = sprintf( '%1$s %3$s',
$excerpt,
get_permalink(),
__( 'Read more', 'generatepress' )
);
}

return $output;
}

This archived topic is closed to new replies.