Home › Forums › Pro Support › Read more link instead of button › Reply To: Read more link instead of button
August 1, 2019 at 3:59 pm
#10560
Keymaster
Hi there,
Give this function a shot:
add_filter( 'wpsp_ellipses', function() {
return sprintf(
'...<a href="%1$s">Read more</a>',
get_permalink()
);
} );