Skip to content

Instantly share code, notes, and snippets.

@JiveDig
Created May 10, 2013 19:22
Show Gist options
  • Save JiveDig/5556755 to your computer and use it in GitHub Desktop.
Save JiveDig/5556755 to your computer and use it in GitHub Desktop.
Remove post info and meta info (entry meta)
//* Remove the entry meta in the entry header (requires HTML5 theme support)
remove_action( 'genesis_entry_header', 'genesis_post_info', 12 );
//* Remove the entry footer markup (requires HTML5 theme support)
remove_action( 'genesis_entry_footer', 'genesis_entry_footer_markup_open', 5 );
remove_action( 'genesis_entry_footer', 'genesis_entry_footer_markup_close', 15 );
//* Remove the entry meta in the entry footer (requires HTML5 theme support)
remove_action( 'genesis_entry_footer', 'genesis_post_meta' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment