Skip to content

Instantly share code, notes, and snippets.

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