Skip to content

Instantly share code, notes, and snippets.

@lindseyriel
Created May 1, 2015 18:17
Show Gist options
  • Save lindseyriel/a25813e1dccd08611c54 to your computer and use it in GitHub Desktop.
Save lindseyriel/a25813e1dccd08611c54 to your computer and use it in GitHub Desktop.
Genesis After Post Signature
// Add Signature Image after single post
add_action('genesis_entry_footer', 'custom_include_signature', 1);
function custom_include_signature() {
if(is_single()) { ?>
<img src=" Url Here" alt="Signature" />
<?php }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment