Created
May 10, 2013 19:22
-
-
Save JiveDig/5556755 to your computer and use it in GitHub Desktop.
Remove post info and meta info (entry meta)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//* 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