Created
November 5, 2017 17:28
-
-
Save anwerashif/a9f0e88b91ca261fcf7ac1ed781acfc3 to your computer and use it in GitHub Desktop.
Customize the Genesis content limit read more link
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Do NOT include the opening PHP tag | |
// Customize the Genesis content limit read more link | |
add_filter( 'get_the_content_more_link', 'sp_read_more_link' ); | |
function sp_read_more_link() { | |
return '<p class="more-link">Continue reading » <a href="' . get_permalink() . '">' . get_the_title() . '</a></p>'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment