Skip to content

Instantly share code, notes, and snippets.

@johnnya23
Last active January 5, 2022 12:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johnnya23/33f45a53ff00f04e8a021b08f47e9756 to your computer and use it in GitHub Desktop.
Save johnnya23/33f45a53ff00f04e8a021b08f47e9756 to your computer and use it in GitHub Desktop.
<?php
/**
* Add Read More button below post excerpts/content on archives.
*/
function jma_child_read_more()
{
// only if this is not a singular page.
if (!is_singular()) {
printf('<a href="%s" class="more-link button">%s</a>', get_permalink(), esc_html__('Continue Reading'));
}
}
add_action('genesis_entry_footer', 'jma_child_read_more');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment