Hi, I’ve tried to add Read more link to Visual Composer post grid for manual excerpt using this code:
if ( ! function_exists( 'x_excerpt_string' ) ) :
function x_excerpt_string( $more ) {
$stack = x_get_stack();
if ( $stack == 'integrity' ) {
return ' ... <div><a href="' . get_permalink() . '" class="more-link">' . __( 'Read more', '__x__' ) . '</a></div>';
}
}
add_filter( 'excerpt_more', 'x_excerpt_string' );
endif;
But Read more doesn’t appear next to manual excerpt. Can you help me achieve this?
This is the page where you can see the manual excerpt without Read more link https://lesgomines.it/attivita-per-tutti/
Thank you very much