Skip to content

Instantly share code, notes, and snippets.

@srikat
Created January 17, 2014 07:22
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save srikat/8469623 to your computer and use it in GitHub Desktop.
Save srikat/8469623 to your computer and use it in GitHub Desktop.
Moving Post Info above Post Title in Genesis. http://sridharkatakam.com/move-post-info-above-post-title-in-genesis/
//* Position post info above post title
remove_action( 'genesis_entry_header', 'genesis_post_info', 12);
add_action( 'genesis_entry_header', 'genesis_post_info', 9 );
.entry-header .entry-meta {
margin-bottom: 1.2rem;
}
.entry-title {
margin-bottom: 2rem;
}
@ciaranha
Copy link

@srikat for me this seems to add the entry-meta above the post title but it doesn't remove the one below so now I have 2. Any ideas? You can view it here

@anthiago
Copy link

@srikat for me this seems to add the entry-meta above the post title but it doesn't remove the one below so now I have 2. Any ideas? You can view it here

Same here

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment