Skip to content

Instantly share code, notes, and snippets.

@leepettijohn
Created October 18, 2016 16:00
Show Gist options
  • Select an option

  • Save leepettijohn/08632b08fecb4f35792892a6540f314a to your computer and use it in GitHub Desktop.

Select an option

Save leepettijohn/08632b08fecb4f35792892a6540f314a to your computer and use it in GitHub Desktop.
Move post title around other content (HTML5)
remove_action( 'genesis_entry_header', 'genesis_do_post_title' );
add_action ('genesis_before_entry_content','add_before_title');
add_action( 'genesis_before_entry_content', 'genesis_do_post_title' );
function add_before_title(){
echo 'do something';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment