Modify the WordPress read more link

<?php add_filter( 'the_content_more_link', 'sp_read_more_link' ); function sp_read_more_link() { return '<a class="more-link" href="' . get_permalink() . '"> Continue…</a>'; } ?>
Simply paste this code snippet in the functions.php file of your (child) theme (without the php tags).

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.