Skip to content

Instantly share code, notes, and snippets.

@reasonstousegenesis
Created September 21, 2015 05:04
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 reasonstousegenesis/b1a548cfbdd4a72fcf0b to your computer and use it in GitHub Desktop.
Save reasonstousegenesis/b1a548cfbdd4a72fcf0b to your computer and use it in GitHub Desktop.
Insert extra content directly after the post categories and tags (XHTML)
<?php
// Paste the code BELOW this line into your child theme functions.
/**
* Insert extra content directly after the post categories and tags (XHTML)
*
* @author Reasons to Use Genesis
* @link http://reasonstousegenesis.com/genesis-after-entry-content/
*/
add_action( 'genesis_after_post_content', 'rtug_entry_footer' );
function rtug_entry_footer() {
echo '<p>A piece of extra content directly after the post categories and tags</p>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment