Skip to content

Instantly share code, notes, and snippets.

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