Skip to content

Instantly share code, notes, and snippets.

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