Skip to content

Instantly share code, notes, and snippets.

@anwerashif
Created November 5, 2017 17:28
Show Gist options
  • Save anwerashif/a9f0e88b91ca261fcf7ac1ed781acfc3 to your computer and use it in GitHub Desktop.
Save anwerashif/a9f0e88b91ca261fcf7ac1ed781acfc3 to your computer and use it in GitHub Desktop.
Customize the Genesis content limit read more link
<?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