We're merging with GenerateBlocks! Learn more here.

Support Forum

Please login to receive premium support.

Support for the free plugin can be found here.

Home Forums Pro Support Read more link instead of button Reply To: Read more link instead of button

#10560
Tom
Keymaster

Hi there,

Give this function a shot:

add_filter( 'wpsp_ellipses', function() {
    return sprintf( 
        '...<a href="%1$s">Read more</a>',
        get_permalink()
    );
} );