Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save generatepress/4066aa4012787550511092e1fe188014 to your computer and use it in GitHub Desktop.
Save generatepress/4066aa4012787550511092e1fe188014 to your computer and use it in GitHub Desktop.
Add the edit link back below the content in GP
add_action( 'generate_after_content','generate_add_edit_link' );
function generate_add_edit_link()
{
if ( ! is_singular() )
return;
edit_post_link( __( 'Edit', 'generatepress' ), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment