Created
May 5, 2013 03:51
-
-
Save jamiemitchell/5519621 to your computer and use it in GitHub Desktop.
Remove post info/meta on products category pages
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
<?php | |
/* Remove post info/meta on products category pages | |
------------------------------------------------------------ */ | |
add_action('genesis_before','remove_post_info_meta'); | |
function remove_post_info_meta() { | |
if ( in_category('products')) { | |
remove_action( 'genesis_before_post_content', 'genesis_post_info' ); | |
remove_action( 'genesis_after_post_content', 'genesis_post_meta' ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment