Skip to content

Instantly share code, notes, and snippets.

View jainnidhi's full-sized avatar

Nidhi Jain jainnidhi

View GitHub Profile
@jainnidhi
jainnidhi / gist:c4ac8b6e2ec22ac102b210ec8255cd50
Created August 16, 2018 09:14 — forked from joshuafredrickson/gist:5439897
WordPress - Genesis: Custom "read more" link in excerpts
// Custom read more link
add_filter( 'excerpt_more', 'op_read_more_link' );
add_filter( 'get_the_content_more_link', 'op_read_more_link' );
add_filter( 'the_content_more_link', 'op_read_more_link' );
function op_read_more_link() {
return '... <a class="more-link" href="' . get_permalink() . '" rel="nofollow">Continue Reading &raquo;</a>';
}