Skip to content

Instantly share code, notes, and snippets.

@reasonstousegenesis
Created May 11, 2015 11:50
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/490ee1b4cb460b6a8050 to your computer and use it in GitHub Desktop.
Save reasonstousegenesis/490ee1b4cb460b6a8050 to your computer and use it in GitHub Desktop.
Add code after the title tag with Genesis
<?php
// Paste the code BELOW this line into your child theme functions.
/**
* Add code after the title tag with Genesis
*
* @author Reasons to Use Genesis
* @link http://reasonstousegenesis.com/genesis-title-hook/
*/
add_action( 'genesis_title', 'rtug_after_title_tag', 15 );
function rtug_after_title_tag() {
// Your code here
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment